Fixed comments

This commit is contained in:
nathan 2020-08-13 17:02:24 +02:00
parent 6bd93ac8ea
commit ac0aba1113
2 changed files with 2 additions and 6 deletions

View File

@ -45,10 +45,8 @@ import com.esotericsoftware.kryo.KryoException;
import com.esotericsoftware.kryo.io.Input;
import com.esotericsoftware.kryo.util.Util;
import io.netty.buffer.ByteBuf;
/**
* An {@link InputStream} which reads data from a {@link ByteBuf}.
* An {@link InputStream} which reads data from a {@link DirectBuffer}.
* <p/>
* A read operation against this stream will occur at the {@code readerIndex}
* of its underlying buffer and the {@code readerIndex} will increase during

View File

@ -44,10 +44,8 @@ import org.agrona.concurrent.UnsafeBuffer;
import com.esotericsoftware.kryo.KryoException;
import com.esotericsoftware.kryo.io.Output;
import io.netty.buffer.ByteBuf;
/**
* An {@link OutputStream} which writes data to a {@link ByteBuf}.
* An {@link OutputStream} which writes data to a {@link MutableDirectBuffer}.
* <p>
* A write operation against this stream will occur at the {@code writerIndex}
* of its underlying buffer and the {@code writerIndex} will increase during