Skip to content

Commit 7a8c216

Browse files
author
rikkarth
committed
fix(stleary#877): adaptation for java 6 compatibility
1 parent 9216a19 commit 7a8c216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/json/JSONTokener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public JSONTokener(Reader reader) {
5353
this.character = 1;
5454
this.characterPreviousLine = 0;
5555
this.line = 1;
56-
this.smallCharMemory = new ArrayList<>(2);
56+
this.smallCharMemory = new ArrayList<Character>(2);
5757
}
5858

5959

0 commit comments

Comments
 (0)