Skip to content

Commit

Permalink
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -23,7 +23,6 @@ public class FormatTokenizer {
private final RubyContext context;
private final ByteList format;
private int position;
private Object peek;

/**
* Construct a tokenizer.
@@ -35,12 +34,6 @@ public FormatTokenizer(RubyContext context, ByteList format) {
}

public Object next() {
if (peek != null) {
final Object token = peek;
peek = null;
return token;
}

if (position >= format.length()) {
return null;
}

0 comments on commit ea61f78

Please sign in to comment.