Skip to content
This repository was archived by the owner on Aug 12, 2022. It is now read-only.

Commit 0908583

Browse files
committed
Small fix to be compatible with < 1.7.8
1 parent a04af95 commit 0908583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/orientechnologies/orient/etl/extractor/OJsonExtractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void extract(final Reader iReader) {
7474
super.extract(iReader);
7575
jsonReader = new OJSONReader(reader);
7676
try {
77-
first = jsonReader.nextChar();
77+
first = (char) reader.read();
7878
if (first == '[')
7979
first = null;
8080
else if (first == '{')

0 commit comments

Comments
 (0)