remove a nonsense comment from Tokenizer.java leftover from earlier patch iteration

This commit is contained in:
Havoc Pennington 2011-12-13 18:34:29 -05:00
parent c5028bca3d
commit 5302c1e90e

View File

@ -475,8 +475,6 @@ final class Tokenizer {
Token whitespace = saver.check(t, origin, lineNumber);
if (whitespace != null)
expression.add(whitespace);
// we don't add comments here though; they can't happen in
// valid syntax anyway.
expression.add(t);
}
} while (true);