Changed constructor parameter order

This commit is contained in:
Trustin Lee 2009-11-03 06:46:30 +00:00
parent 26cdadda9e
commit 6e51084216

View File

@ -69,7 +69,7 @@ public class ZlibEncoder extends OneToOneEncoder {
* @throws CompressionException if failed to initialize zlib * @throws CompressionException if failed to initialize zlib
*/ */
public ZlibEncoder(int compressionLevel) { public ZlibEncoder(int compressionLevel) {
this(compressionLevel, ZlibWrapper.ZLIB); this(ZlibWrapper.ZLIB, compressionLevel);
} }
/** /**
@ -79,13 +79,12 @@ public class ZlibEncoder extends OneToOneEncoder {
* @throws CompressionException if failed to initialize zlib * @throws CompressionException if failed to initialize zlib
*/ */
public ZlibEncoder(ZlibWrapper wrapper) { public ZlibEncoder(ZlibWrapper wrapper) {
this(6, wrapper); this(wrapper, 6);
} }
/** /**
* Creates a new zlib encoder with the specified {@code compressionLevel} * Creates a new zlib encoder with the specified {@code compressionLevel}
* and the specified wrapper. * and the specified wrapper.
*
* @param compressionLevel * @param compressionLevel
* {@code 1} yields the fastest compression and {@code 9} yields the * {@code 1} yields the fastest compression and {@code 9} yields the
* best compression. {@code 0} means no compression. The default * best compression. {@code 0} means no compression. The default
@ -93,7 +92,7 @@ public class ZlibEncoder extends OneToOneEncoder {
* *
* @throws CompressionException if failed to initialize zlib * @throws CompressionException if failed to initialize zlib
*/ */
public ZlibEncoder(int compressionLevel, ZlibWrapper wrapper) { public ZlibEncoder(ZlibWrapper wrapper, int compressionLevel) {
if (compressionLevel < 0 || compressionLevel > 9) { if (compressionLevel < 0 || compressionLevel > 9) {
throw new IllegalArgumentException( throw new IllegalArgumentException(
"compressionLevel: " + compressionLevel + "compressionLevel: " + compressionLevel +