1
0

APIDump: Removed ignored classes logging.

This commit is contained in:
madmaxoft 2013-10-02 08:50:43 +02:00
parent 02c41b6f1d
commit 5ab6003e0f

View File

@ -335,8 +335,6 @@ function ReadDescriptions(a_API)
for i, cls in ipairs(a_API) do for i, cls in ipairs(a_API) do
if not(IsClassIgnored(cls.Name)) then if not(IsClassIgnored(cls.Name)) then
table.insert(APICopy, cls); table.insert(APICopy, cls);
else
LOG("Ignoring class " .. cls.Name);
end end
end end
for i = 1, #a_API do for i = 1, #a_API do