2.4.4 nuked some debug output

git [05-21-18 - 16:27]
2.4.4 nuked some debug output
Filename
FurCData.lua
FurCUtil.lua
FurnitureCatalogue.txt
startup.lua
diff --git a/FurCData.lua b/FurCData.lua
index 084486f..550c612 100644
--- a/FurCData.lua
+++ b/FurCData.lua
@@ -173,7 +173,7 @@ end
 function FurC.GetEntry(itemOrBlueprintLink)
 	local itemLink =  (IsItemLinkFurnitureRecipe(itemOrBlueprintLink) and GetRecipeResultItemLink(itemOrBlueprintLink)) or itemOrBlueprintLink
 	local recipeArray = FurC.Find(itemLink)
-	d(string.format("Trying to get entry for %s: %s", itemLink, recipeArray))
+	-- d(string.format("Trying to get entry for %s: %s", itemLink, recipeArray))
 	if not recipeArray then return end
 	local itemId = getItemId(itemOrBlueprintLink)
 	if recipeArray.blueprint then
diff --git a/FurCUtil.lua b/FurCUtil.lua
index f5f1d6e..8b7f6b7 100644
--- a/FurCUtil.lua
+++ b/FurCUtil.lua
@@ -8,9 +8,11 @@ function FurC.SortTable(tTable, sortKey, SortOrderUp)
 		if nil == tTable[a] or nil == tTable[b] then

 		elseif nil == tTable[a][sortKey] then
-			d(tTable[a])
+            return false
+			-- d(tTable[a])
 		elseif nil == tTable[b][sortKey] then
-			d(tTable[b])
+            return true
+			-- d(tTable[b])
 		else
 			if SortOrderUp then
 				return tTable[a][sortKey] > tTable[b][sortKey]
diff --git a/FurnitureCatalogue.txt b/FurnitureCatalogue.txt
index c198d23..c7c0718 100644
--- a/FurnitureCatalogue.txt
+++ b/FurnitureCatalogue.txt
@@ -1,6 +1,6 @@
 ## Title: FurnitureCatalogue
 ## Author: manavortex
-## Version: 2.4.3
+## Version: 2.4.4
 ## APIVersion: 100023
 ## SavedVariables: FurnitureCatalogue_Settings
 ## OptionalDependsOn: pChat
diff --git a/startup.lua b/startup.lua
index d71966d..14a02cd 100644
--- a/startup.lua
+++ b/startup.lua
@@ -1,7 +1,7 @@
 FurnitureCatalogue 					= {}
 FurnitureCatalogue.name				= "FurnitureCatalogue"
 FurnitureCatalogue.author			= "manavortex"
-FurnitureCatalogue.version          = "2.4.3"
+FurnitureCatalogue.version          = "2.4.4"
 FurnitureCatalogue.CharacterName	= nil
 FurnitureCatalogue.settings			= {}