diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-09-17 03:52:11 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-09-17 03:52:11 +0500 |
commit | d84675d6fb4f5ed80d53239874b34e6abbad8094 (patch) | |
tree | 5b3cdf94511f62537c4d6cae051329e8108d69f3 /util/httpstream.lua | |
parent | 2f8d834e0ac8b59bfa34f812224fe99db5e9cd5a (diff) | |
download | prosody-d84675d6fb4f5ed80d53239874b34e6abbad8094.tar.gz prosody-d84675d6fb4f5ed80d53239874b34e6abbad8094.zip |
util.httpstream: Removed unused variables.
Diffstat (limited to 'util/httpstream.lua')
-rw-r--r-- | util/httpstream.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/util/httpstream.lua b/util/httpstream.lua index 09116e67..9c3c9ae6 100644 --- a/util/httpstream.lua +++ b/util/httpstream.lua @@ -1,12 +1,7 @@ -local setmetatable = setmetatable; local coroutine = coroutine; local tonumber = tonumber; -local print = print; -local error = error; -local ser = require "util.serialization".serialize; - local deadroutine = coroutine.create(function() end); coroutine.resume(deadroutine); |