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 | 75c8b77900bb4efc7e495993a9669d7b0bd67340 (patch) | |
tree | 0032bd52e1c5a384927f500a9ca124cb3c53b939 | |
parent | ed2dc14ab3850ca287ed9f140f7b1da0c32eb331 (diff) | |
download | prosody-75c8b77900bb4efc7e495993a9669d7b0bd67340.tar.gz prosody-75c8b77900bb4efc7e495993a9669d7b0bd67340.zip |
util.serialization: Remove unused imports of error() and loadstring() [luacheck]
-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; |