in src/main/java/org/apache/sling/contentparser/json/internal/JSONContentParser.java [90:96]
private JsonObject toJsonObject(JsonReaderFactory jsonReaderFactory, InputStream is) throws IOException {
try (JsonReader reader = jsonReaderFactory.createReader(is)) {
return reader.readObject();
} catch (JsonParsingException ex) {
throw new IOException("Error parsing JSON content.", ex);
}
}