removed deprecated code
parent
dc24d51674
commit
4cbe18f318
|
@ -37,7 +37,7 @@ import org.at4j.support.io.LittleEndianBitOutputStream;
|
||||||
* @since 1.1
|
* @since 1.1
|
||||||
* @see BZip2OutputStreamSettings
|
* @see BZip2OutputStreamSettings
|
||||||
*/
|
*/
|
||||||
public class BZip2OutputStream extends OutputStream
|
public class BZip2OutputStream extends OutputStream implements AutoCloseable
|
||||||
{
|
{
|
||||||
private static final byte[] EOS_MAGIC = new byte[] { 0x17, 0x72, 0x45, 0x38, 0x50, (byte) 0x90 };
|
private static final byte[] EOS_MAGIC = new byte[] { 0x17, 0x72, 0x45, 0x38, 0x50, (byte) 0x90 };
|
||||||
|
|
||||||
|
@ -263,17 +263,6 @@ public class BZip2OutputStream extends OutputStream
|
||||||
return this == o;
|
return this == o;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Close the stream if the client has been sloppy about it.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
protected void finalize() throws Throwable
|
|
||||||
{
|
|
||||||
close();
|
|
||||||
super.finalize();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a {@link BZip2EncoderExecutorService} that can be shared between
|
* Create a {@link BZip2EncoderExecutorService} that can be shared between
|
||||||
* several {@link BZip2OutputStream}:s to spread the bzip2 encoding work
|
* several {@link BZip2OutputStream}:s to spread the bzip2 encoding work
|
||||||
|
|
Loading…
Reference in New Issue