Changeset

5459:3a821511b9ec

sessionmanager, s2smanager: Remove unused imports
author Matthew Wild <mwild1@gmail.com>
date Thu, 11 Apr 2013 17:35:39 +0100
parents 5458:84162b81c863
children 5460:274c10668fe8
files core/s2smanager.lua core/sessionmanager.lua
diffstat 2 files changed, 2 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/core/s2smanager.lua	Thu Apr 11 17:32:59 2013 +0100
+++ b/core/s2smanager.lua	Thu Apr 11 17:35:39 2013 +0100
@@ -9,8 +9,8 @@
 
 
 local hosts = prosody.hosts;
-local tostring, pairs, getmetatable, newproxy, setmetatable
-    = tostring, pairs, getmetatable, newproxy, setmetatable;
+local tostring, pairs, setmetatable
+    = tostring, pairs, setmetatable;
 
 local logger_init = require "util.logger".init;
 
--- a/core/sessionmanager.lua	Thu Apr 11 17:32:59 2013 +0100
+++ b/core/sessionmanager.lua	Thu Apr 11 17:35:39 2013 +0100
@@ -24,9 +24,6 @@
 local initialize_filters = require "util.filters".initialize;
 local gettime = require "socket".gettime;
 
-local newproxy = newproxy;
-local getmetatable = getmetatable;
-
 module "sessionmanager"
 
 function new_session(conn)