fix(#877): adaptation for java 6 compatibility

This commit is contained in:
rikkarth
2024-04-27 22:16:38 +01:00
parent 9216a19366
commit 7a8c21621c

View File

@@ -53,7 +53,7 @@ public class JSONTokener {
this.character = 1;
this.characterPreviousLine = 0;
this.line = 1;
this.smallCharMemory = new ArrayList<>(2);
this.smallCharMemory = new ArrayList<Character>(2);
}