Including hashcode in BufferUtils.toDetailString()
This commit is contained in:
parent
6f098dd69c
commit
11d7617298
|
@ -759,7 +759,7 @@ public class BufferUtil
|
||||||
if (buffer.hasArray())
|
if (buffer.hasArray())
|
||||||
buf.append(Integer.toHexString(((Object)buffer.array()).hashCode()));
|
buf.append(Integer.toHexString(((Object)buffer.array()).hashCode()));
|
||||||
else
|
else
|
||||||
buf.append("?");
|
buf.append(Integer.toHexString(buf.hashCode()));
|
||||||
buf.append("[p=");
|
buf.append("[p=");
|
||||||
buf.append(buffer.position());
|
buf.append(buffer.position());
|
||||||
buf.append(",l=");
|
buf.append(",l=");
|
||||||
|
|
Loading…
Reference in New Issue