Remove unused lex_specials method

This commit is contained in:
Tristan Hume
2013-08-02 15:12:11 -04:00
parent ace12e29da
commit 48f50eea3b

View File

@@ -50,15 +50,5 @@ module Liquid
@output << tok
end
end
protected
def lex_specials
c = @ss.getch
if s = SPECIALS[c]
return Token.new(s,c)
end
raise SyntaxError, "Unexpected character #{c}."
end
end
end