Hide ChannelBufferByteInput, ChannelBufferByteOutput and LimitingByteInput

This commit is contained in:
Norman Maurer 2012-05-14 17:34:11 +02:00
parent 1f866fc7ad
commit 0fa60c82fa
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ import org.jboss.netty.buffer.ChannelBuffer;
*
*
*/
public class ChannelBufferByteInput implements ByteInput {
class ChannelBufferByteInput implements ByteInput {
private final ChannelBuffer buffer;

View File

@ -27,7 +27,7 @@ import org.jboss.netty.buffer.ChannelBuffers;
*
*
*/
public class ChannelBufferByteOutput implements ByteOutput {
class ChannelBufferByteOutput implements ByteOutput {
private final ChannelBuffer buffer;

View File

@ -25,7 +25,7 @@ import org.jboss.marshalling.ByteInput;
*
*
*/
public class LimitingByteInput implements ByteInput {
class LimitingByteInput implements ByteInput {
private final ByteInput input;
private final long limit;