Remove unused function

This commit is contained in:
Samuel Williams 2020-04-08 22:39:19 +01:00
parent 0b226e0425
commit d287265587

View File

@ -18,15 +18,3 @@ function xdcall( func, ... )
return false, traceback
end
-- Hatling error with the little popup, but no traceback
function errorNoTrace( err )
local mt = {
__tostring = function( self )
return err
end
}
local errObj = setmetatable( {}, mt )
error( errObj )
end