Skip to content

Commit

Permalink
Fix #4613
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jul 25, 2024
1 parent d2834a0 commit d8857c1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ private static String _quoteTruncated(String str) {
return String.format("'%s...'[truncated %d charaters]",
str.substring(0, 1000), str.length() - 1000);
}
final static class MyTokenizer extends StringTokenizer

final protected static class MyTokenizer extends StringTokenizer
{
protected final String _input;

Expand Down

0 comments on commit d8857c1

Please sign in to comment.