Browse Source

remove superfluous collectgarbage()

devsaurus 8 years ago
parent
commit
5a6975b343
1 changed files with 0 additions and 1 deletions
  1. 0 1
      lua_examples/webap_toggle_pin.lua

+ 0 - 1
lua_examples/webap_toggle_pin.lua

@@ -27,6 +27,5 @@ srv:listen(80,function(conn)
         buf = buf.."<option".._on..">ON</opton><option".._off..">OFF</option></select></form>";
         client:send(buf);
         client:close();
-        collectgarbage();
     end)
 end)