Comparison

util/httpstream.lua @ 3495:bd7699a6d536

util.httpstream: Removed unused variables.
author Waqas Hussain <waqas20@gmail.com>
date Fri, 17 Sep 2010 03:52:11 +0500
parent 3494:0f185563a4e4
child 3496:9408d1e10e17
comparison
equal deleted inserted replaced
3494:0f185563a4e4 3495:bd7699a6d536
1 1
2 local setmetatable = setmetatable;
3 local coroutine = coroutine; 2 local coroutine = coroutine;
4 local tonumber = tonumber; 3 local tonumber = tonumber;
5
6 local print = print;
7 local error = error;
8 local ser = require "util.serialization".serialize;
9 4
10 local deadroutine = coroutine.create(function() end); 5 local deadroutine = coroutine.create(function() end);
11 coroutine.resume(deadroutine); 6 coroutine.resume(deadroutine);
12 7
13 module("httpstream") 8 module("httpstream")