aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ejabberdsql2prosody.lua
diff options
context:
space:
mode:
authorAnton Shestakov <av6@dwimlabs.net>2016-08-12 13:29:27 +0800
committerAnton Shestakov <av6@dwimlabs.net>2016-08-12 13:29:27 +0800
commit0bbcab4e51651d749abe6bf55bb6fb1f5d046243 (patch)
tree4f680959de29f797272fe31cc0635fc2b1d43524 /tools/ejabberdsql2prosody.lua
parentef3f3b099fd0e7b0a7ac2705523ad719ce8a0a33 (diff)
downloadprosody-0bbcab4e51651d749abe6bf55bb6fb1f5d046243.tar.gz
prosody-0bbcab4e51651d749abe6bf55bb6fb1f5d046243.zip
ejabberdsql2prosody: remove unused function pushback() [luacheck]
The same function seems to exist in tools/erlparse.lua, also unused.
Diffstat (limited to 'tools/ejabberdsql2prosody.lua')
-rw-r--r--tools/ejabberdsql2prosody.lua4
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/ejabberdsql2prosody.lua b/tools/ejabberdsql2prosody.lua
index 69c8cfe8..a9d624aa 100644
--- a/tools/ejabberdsql2prosody.lua
+++ b/tools/ejabberdsql2prosody.lua
@@ -42,10 +42,6 @@ local function read(expected)
if expected and ch ~= expected then error("expected: "..expected.."; got: "..(ch or "nil").." on line "..line); end
return ch;
end
-local function pushback(ch)
- if last then error(); end
- last = ch;
-end
local function peek()
if not last then last = read(); end
return last;