Skip to content

Commit e6abe04

Browse files
Make TokenizerTester() constructor public
This change makes the TokenizerTester(InputStream stream) constructor public — as the corresponding constructors for TreeTester and EncodingTester already are.
1 parent 500a9f5 commit e6abe04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-src/nu/validator/htmlparser/test/TokenizerTester.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private static boolean jsonDeepEquals(JSONValue one, JSONValue other) {
9797

9898
private final Writer writer;
9999

100-
private TokenizerTester(InputStream stream) throws TokenStreamException,
100+
public TokenizerTester(InputStream stream) throws TokenStreamException,
101101
RecognitionException, UnsupportedEncodingException {
102102
tokenHandler = new JSONArrayTokenHandler();
103103
driver = new Driver(new ErrorReportingTokenizer(tokenHandler));

0 commit comments

Comments
 (0)