util.datamanager: Remove a few unused imports
authorKim Alvefur <zash@zash.se>
Sun, 29 Jul 2012 01:30:59 +0000 (03:30 +0200)
committerKim Alvefur <zash@zash.se>
Sun, 29 Jul 2012 01:30:59 +0000 (03:30 +0200)
util/datamanager.lua

index 5d3074a322883774e6e66f24df7b6bf043975be2..0eb3d58adf0ca7452094e7bef6110318eaca78bd 100644 (file)
@@ -8,16 +8,15 @@
 
 
 local format = string.format;
-local setmetatable, type = setmetatable, type;
-local pairs, ipairs = pairs, ipairs;
+local setmetatable = setmetatable;
+local ipairs = ipairs;
 local char = string.char;
 local pcall = pcall;
 local log = require "util.logger".init("datamanager");
 local io_open = io.open;
 local os_remove = os.remove;
 local os_rename = os.rename;
-local tostring, tonumber = tostring, tonumber;
-local error = error;
+local tonumber = tonumber;
 local next = next;
 local t_insert = table.insert;
 local t_concat = table.concat;