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
No known key found for this signature in database
GPG Key ID: 11E5F28B0AED6AC7

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);
}