Skip to content

Commit

Permalink
fix(#877): adaptation for java 6 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
rikkarth committed Apr 27, 2024
1 parent 9216a19 commit 7a8c216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/json/JSONTokener.java
Expand Up @@ -53,7 +53,7 @@ public JSONTokener(Reader reader) {
this.character = 1;
this.characterPreviousLine = 0;
this.line = 1;
this.smallCharMemory = new ArrayList<>(2);
this.smallCharMemory = new ArrayList<Character>(2);
}


Expand Down

0 comments on commit 7a8c216

Please sign in to comment.