Skip to content

Commit 6b65d84

Browse files
sideshowbarkerhsivonen
authored andcommitted
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 9a57522 commit 6b65d84

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
@@ -101,7 +101,7 @@ private static boolean jsonDeepEquals(JSONValue one, JSONValue other) {
101101

102102
private final Writer writer;
103103

104-
private TokenizerTester(InputStream stream) throws TokenStreamException,
104+
public TokenizerTester(InputStream stream) throws TokenStreamException,
105105
RecognitionException, UnsupportedEncodingException {
106106
tokenHandler = new JSONArrayTokenHandler();
107107
driver = new Driver(new ErrorReportingTokenizer(tokenHandler));

0 commit comments

Comments
 (0)