Fixed DefaultDataBuffer.toString()

This commit is contained in:
Arjen Poutsma
2018-09-11 13:24:03 +02:00
parent 184340ff8e
commit cde677a1f4

View File

@@ -431,7 +431,7 @@ public class DefaultDataBuffer implements DataBuffer {
@Override
public String toString() {
return String.format("DefaultDataBuffer (r: %d, w %d, c %d)",
return String.format("DefaultDataBuffer (r: %d, w: %d, c: %d)",
this.readPosition, this.writePosition, this.capacity);
}