netty5/buffer/src
Janecek Jakub a4ebdd0eca Fix setBytes on read-only ByteBuffer
Motivation:

The method setBytes did not work correctly because read-only ByteBuffer
does not allow access to its underlying array.

Modifications:

New case was added for ByteBuffer's that are not direct and do not have an array.
These must be handled by copying the data into a temporary array. Unit test was
added to test this case.

Result:

It is now possible to use read-only ByteBuffer as the source
for the setBytes method.
2015-11-17 22:45:37 -08:00
..
main/java/io/netty/buffer Fix setBytes on read-only ByteBuffer 2015-11-17 22:45:37 -08:00
test/java/io/netty/buffer Fix setBytes on read-only ByteBuffer 2015-11-17 22:45:37 -08:00