Removed debug 'proxy method called' output

This commit is contained in:
Harry Felton 2017-07-27 10:57:22 +12:00
parent 34e872a413
commit d8172dbc69

View file

@ -147,11 +147,14 @@ function Window:__postInit__()
self.super:__postInit__()
end
--[[
@instance
@desc WIP
]]
function Window:createProxies( content )
content = content or self.content
for _, name in pairs( Window.static.proxyMethods ) do
self[ name ] = function( self, ... )
printError("proxy method '"..tostring( name ).."' called")
return content[ name ]( content, ... )
end