Skip to content

Commit cde677a

Browse files
committed
Fixed DefaultDataBuffer.toString()
1 parent 184340f commit cde677a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-core/src/main/java/org/springframework/core/io/buffer/DefaultDataBuffer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ public int hashCode() {
431431

432432
@Override
433433
public String toString() {
434-
return String.format("DefaultDataBuffer (r: %d, w %d, c %d)",
434+
return String.format("DefaultDataBuffer (r: %d, w: %d, c: %d)",
435435
this.readPosition, this.writePosition, this.capacity);
436436
}
437437

0 commit comments

Comments
 (0)