mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-20 09:17:29 +07:00
Commented out comments -- linter was thinking this class was deprecated
This commit is contained in:
parent
acdbace5ea
commit
c8b74fccbf
@ -449,31 +449,31 @@ public class BitInput {
|
||||
return read64(Long.SIZE);
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated unaligned reads not supported!
|
||||
* use {@code align().readBytes(int)} instead!
|
||||
* <pre>{@link #align()} {@link ByteInput#readBytes(int)}</pre>
|
||||
*/
|
||||
// /**
|
||||
// * @deprecated unaligned reads not supported!
|
||||
// * use {@code align().readBytes(int)} instead!
|
||||
// * <pre>{@link #align()} {@link ByteInput#readBytes(int)}</pre>
|
||||
// */
|
||||
// @Deprecated
|
||||
// public byte[] readBytes(int len) {
|
||||
// throw new UnsupportedOperationException("use align().readBytes(int) instead!");
|
||||
// }
|
||||
|
||||
/**
|
||||
* @deprecated unaligned reads not supported!
|
||||
* use {@code align().readBytes(byte[])} instead!
|
||||
* <pre>{@link #align()} {@link ByteInput#readBytes(byte[])}</pre>
|
||||
*/
|
||||
// /**
|
||||
// * @deprecated unaligned reads not supported!
|
||||
// * use {@code align().readBytes(byte[])} instead!
|
||||
// * <pre>{@link #align()} {@link ByteInput#readBytes(byte[])}</pre>
|
||||
// */
|
||||
// @Deprecated
|
||||
// public byte[] readBytes(byte[] dst) {
|
||||
// throw new UnsupportedOperationException("use align().readBytes(byte[]) instead!");
|
||||
// }
|
||||
|
||||
/**
|
||||
* @deprecated unaligned reads not supported!
|
||||
* use {@code align().readBytes(byte[], int, int)} instead!
|
||||
* <pre>{@link #align()} {@link ByteInput#readBytes(byte[], int, int)}</pre>
|
||||
*/
|
||||
// /**
|
||||
// * @deprecated unaligned reads not supported!
|
||||
// * use {@code align().readBytes(byte[], int, int)} instead!
|
||||
// * <pre>{@link #align()} {@link ByteInput#readBytes(byte[], int, int)}</pre>
|
||||
// */
|
||||
// @Deprecated
|
||||
// public byte[] readBytes(byte[] dst, int dstOffset, int len) {
|
||||
// throw new UnsupportedOperationException("use align().readBytes(byte[],int,int) instead!");
|
||||
|
Loading…
Reference in New Issue
Block a user