diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:40:48 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:40:48 +0100 |
commit | 72be71031ac21fa60622b34cb3219fbaefcfdd99 (patch) | |
tree | 0032bd52e1c5a384927f500a9ca124cb3c53b939 /util/serialization.lua | |
parent | b731594e1332d03da90c30593f338345197dbad4 (diff) | |
download | prosody-72be71031ac21fa60622b34cb3219fbaefcfdd99.tar.gz prosody-72be71031ac21fa60622b34cb3219fbaefcfdd99.zip |
util.serialization: Remove unused imports of error() and loadstring() [luacheck]
Diffstat (limited to 'util/serialization.lua')
-rw-r--r-- | util/serialization.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/util/serialization.lua b/util/serialization.lua index 06e45054..04901135 100644 --- a/util/serialization.lua +++ b/util/serialization.lua @@ -11,11 +11,9 @@ local type = type; local tostring = tostring; local t_insert = table.insert; local t_concat = table.concat; -local error = error; local pairs = pairs; local next = next; -local loadstring = loadstring; local pcall = pcall; local debug_traceback = debug.traceback; |