diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-11-24 20:34:22 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-11-24 20:34:22 +0000 |
commit | 95b463a3ee6dc6d93e1c7b39d043357a4c72f6b1 (patch) | |
tree | 42001e2081df4019c43e46602121d3b4d941ac23 /core | |
parent | 2e17a1667d8de25e281cf2d4a11b50234673ca79 (diff) | |
download | prosody-95b463a3ee6dc6d93e1c7b39d043357a4c72f6b1.tar.gz prosody-95b463a3ee6dc6d93e1c7b39d043357a4c72f6b1.zip |
core.sessionmanager, net.*_listener: Remove the evil collectgarbage() calls
Diffstat (limited to 'core')
-rw-r--r-- | core/sessionmanager.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index 5e7fe06d..9aafe0bf 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -10,7 +10,6 @@ local tonumber, tostring = tonumber, tostring; local ipairs, pairs, print, next= ipairs, pairs, print, next; -local collectgarbage = collectgarbage; local format = import("string", "format"); local hosts = hosts; |