Skip to content

Commit 14bf660

Browse files
author
Marcus Linke
committed
Add comment
1 parent 1540019 commit 14bf660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/dockerjava/core/async/JsonStreamProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void processResponseStream(InputStream response, ResultCallback<T> result
4343
while (!closed && nextToken != null && nextToken != JsonToken.END_OBJECT) {
4444
try {
4545
ObjectNode objectNode = OBJECT_MAPPER.readTree(jp);
46-
46+
// exclude empty item serialization into class #461
4747
if (!objectNode.isEmpty(null)) {
4848
T next = OBJECT_MAPPER.treeToValue(objectNode, clazz);
4949
resultCallback.onNext(next);

0 commit comments

Comments
 (0)