Skip to content

Commit

Permalink
Removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklakan committed Sep 24, 2021
1 parent 29db358 commit 8ba75b3
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -130,15 +130,15 @@ protected Flowable<JsonElement> parse(Callable<InputStream> inputStreamSupplier)
try {
nextItem = gson.fromJson(reader, JsonElement.class);
} catch (IllegalArgumentException y) {
System.out.println("COMPLETED!");
// System.out.println("COMPLETED!");
e.onComplete();
}

if (nextItem != null) {
throw new RuntimeException("More items found after array end: " + nextItem);
}
} else {
System.out.println("COMPLETED!");
// System.out.println("COMPLETED!");
e.onComplete();
}
}
Expand Down

0 comments on commit 8ba75b3

Please sign in to comment.