From 44cf86dcf98fa7c53eb59473e6eb9d8eb365de09 Mon Sep 17 00:00:00 2001
From: madmaxoft <github@xoft.cz>
Date: Sun, 5 Jan 2014 15:04:57 +0100
Subject: InfoDump: Removed an unneeded function.

---
 MCServer/Plugins/InfoDump.lua | 28 ----------------------------
 1 file changed, 28 deletions(-)

(limited to 'MCServer/Plugins')

diff --git a/MCServer/Plugins/InfoDump.lua b/MCServer/Plugins/InfoDump.lua
index f140b0d86..54d7a6042 100644
--- a/MCServer/Plugins/InfoDump.lua
+++ b/MCServer/Plugins/InfoDump.lua
@@ -73,34 +73,6 @@ end
 
 
 
---- Returns an array-table of all commands that are in the specified category
--- Each item is a table {Command = "/command string", Info = {<command info in PluginInfo>}}
-local function GetCategoryCommands(a_PluginInfo, a_CategoryName)
-	local res = {};
-	local function AppendCategoryCommand(a_Prefix, a_Commands)
-		for cmd, info in pairs(a_Commands) do
-			info.Category = info.Category or {};
-			if (type(info.Category) == "string") then
-				info.Category = {info.Category};
-			end
-			for idx, cat in ipairs(info.Category) do
-				if (cat == a_CategoryName) then
-					table.insert(res, {Command = a_Prefix .. cmd, Info = info});
-				end
-			end
-			if (info.Subcommands ~= nil) then
-				AppendCategoryCommand(a_Prefix .. cmd .. " ", info.Subcommands);
-			end
-		end
-	end
-	AppendCategoryCommand("", a_PluginInfo.Commands);
-	return res;
-end
-
-
-
-
-
 --- Builds an array of categories, each containing all the commands belonging to the category,
 -- and the category description, if available.
 -- Returns the array table, each item has the following format:
-- 
cgit v1.2.3