netty5/buffer/src
Nikolay Fedorovskikh 09dd6a5d4d Minor improvements in ByteBufOutputStream
Motivation:
In the `ByteBufOutputStream` we can use an appropriate methods of `ByteBuf`
to reduce calls of virtual methods and do not copying converting logic.

Modifications:
- Use an appropriate methods of `ByteBuf`
- Remove redundant conversions (int -> byte, int -> char).
- Use `ByteBuf#writeCharSequence` in the `writeBytes(String)'.

Result:
Less code duplication. A `writeBytes(String)` method is faster.
No unnecessary conversions. More consistent and cleaner code.
2017-10-21 14:44:13 +02:00
..
main/java/io/netty/buffer Minor improvements in ByteBufOutputStream 2017-10-21 14:44:13 +02:00
test/java/io/netty/buffer Enable PooledByteBufAllocator to work, event without a cache 2017-09-08 10:20:45 +02:00