change @since annotations to 1.1.1
This commit is contained in:
parent
bb10b5064e
commit
fb8cf734c9
|
@ -257,7 +257,7 @@ public final class SnappyFramedInputStream extends InputStream implements
|
||||||
* The destination to write decompressed content to.
|
* The destination to write decompressed content to.
|
||||||
* @return The number of bytes transferred.
|
* @return The number of bytes transferred.
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
* @since 1.2
|
* @since 1.1.1
|
||||||
*/
|
*/
|
||||||
public long transferTo(OutputStream os) throws IOException {
|
public long transferTo(OutputStream os) throws IOException {
|
||||||
if (os == null) {
|
if (os == null) {
|
||||||
|
@ -296,7 +296,7 @@ public final class SnappyFramedInputStream extends InputStream implements
|
||||||
* The destination to write decompressed content to.
|
* The destination to write decompressed content to.
|
||||||
* @return The number of bytes transferred.
|
* @return The number of bytes transferred.
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
* @since 1.2
|
* @since 1.1.1
|
||||||
*/
|
*/
|
||||||
public long transferTo(WritableByteChannel wbc) throws IOException {
|
public long transferTo(WritableByteChannel wbc) throws IOException {
|
||||||
if (wbc == null) {
|
if (wbc == null) {
|
||||||
|
|
|
@ -104,6 +104,7 @@ public final class SnappyFramedOutputStream extends OutputStream implements
|
||||||
* @param out
|
* @param out
|
||||||
* The underlying {@link WritableByteChannel} to write to. Must
|
* The underlying {@link WritableByteChannel} to write to. Must
|
||||||
* not be {@code null}.
|
* not be {@code null}.
|
||||||
|
* @since 1.1.1
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public SnappyFramedOutputStream(WritableByteChannel out) throws IOException {
|
public SnappyFramedOutputStream(WritableByteChannel out) throws IOException {
|
||||||
|
@ -123,6 +124,7 @@ public final class SnappyFramedOutputStream extends OutputStream implements
|
||||||
* Defines the minimum compression ratio (
|
* Defines the minimum compression ratio (
|
||||||
* {@code compressedLength / rawLength}) that must be achieved to
|
* {@code compressedLength / rawLength}) that must be achieved to
|
||||||
* write the compressed data. This must be in (0, 1.0].
|
* write the compressed data. This must be in (0, 1.0].
|
||||||
|
* @since 1.1.1
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public SnappyFramedOutputStream(WritableByteChannel out, int blockSize,
|
public SnappyFramedOutputStream(WritableByteChannel out, int blockSize,
|
||||||
|
@ -257,7 +259,7 @@ public final class SnappyFramedOutputStream extends OutputStream implements
|
||||||
* The source of data to compress.
|
* The source of data to compress.
|
||||||
* @return The number of bytes read from <i>is</i>.
|
* @return The number of bytes read from <i>is</i>.
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
* @since 1.2
|
* @since 1.1.1
|
||||||
*/
|
*/
|
||||||
public long transferFrom(InputStream is) throws IOException {
|
public long transferFrom(InputStream is) throws IOException {
|
||||||
if (closed) {
|
if (closed) {
|
||||||
|
@ -301,7 +303,7 @@ public final class SnappyFramedOutputStream extends OutputStream implements
|
||||||
* The source of data to compress.
|
* The source of data to compress.
|
||||||
* @return The number of bytes read from <i>rbc</i>.
|
* @return The number of bytes read from <i>rbc</i>.
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
* @since 1.2
|
* @since 1.1.1
|
||||||
*/
|
*/
|
||||||
public long transferFrom(ReadableByteChannel rbc) throws IOException {
|
public long transferFrom(ReadableByteChannel rbc) throws IOException {
|
||||||
if (closed) {
|
if (closed) {
|
||||||
|
|
Loading…
Reference in New Issue