diff --git a/lib/liquid/lexer.rb b/lib/liquid/lexer.rb index 536be02..89e0849 100644 --- a/lib/liquid/lexer.rb +++ b/lib/liquid/lexer.rb @@ -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