We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6761841 commit 32c65f0Copy full SHA for 32c65f0
src/main/java/com/github/dockerjava/core/async/JsonStreamProcessor.java
@@ -34,7 +34,7 @@ public JsonStreamProcessor(Class<T> clazz) {
34
public void processResponseStream(InputStream response, ResultCallback<T> resultCallback) {
35
36
resultCallback.onStart(response);
37
- OBJECT_MAPPER.configure(com.fasterxml.jackson.core.JsonParser.Feature.AUTO_CLOSE_SOURCE, true);
+ OBJECT_MAPPER.configure(JsonParser.Feature.AUTO_CLOSE_SOURCE, true);
38
39
try {
40
JsonParser jp = JSON_FACTORY.createParser(response);
0 commit comments