From c8b74fccbff99670852c950b34bd583fb6f91703 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Sat, 8 Aug 2020 14:46:32 -0700 Subject: [PATCH] Commented out comments -- linter was thinking this class was deprecated --- core/src/com/riiablo/io/nio/BitInput.java | 30 +++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/core/src/com/riiablo/io/nio/BitInput.java b/core/src/com/riiablo/io/nio/BitInput.java index 93482491..8fe94504 100644 --- a/core/src/com/riiablo/io/nio/BitInput.java +++ b/core/src/com/riiablo/io/nio/BitInput.java @@ -449,31 +449,31 @@ public class BitInput { return read64(Long.SIZE); } - /** - * @deprecated unaligned reads not supported! - * use {@code align().readBytes(int)} instead! - *
{@link #align()} {@link ByteInput#readBytes(int)}
- */ +// /** +// * @deprecated unaligned reads not supported! +// * use {@code align().readBytes(int)} instead! +// *
{@link #align()} {@link ByteInput#readBytes(int)}
+// */ // @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! - *
{@link #align()} {@link ByteInput#readBytes(byte[])}
- */ +// /** +// * @deprecated unaligned reads not supported! +// * use {@code align().readBytes(byte[])} instead! +// *
{@link #align()} {@link ByteInput#readBytes(byte[])}
+// */ // @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! - *
{@link #align()} {@link ByteInput#readBytes(byte[], int, int)}
- */ +// /** +// * @deprecated unaligned reads not supported! +// * use {@code align().readBytes(byte[], int, int)} instead! +// *
{@link #align()} {@link ByteInput#readBytes(byte[], int, int)}
+// */ // @Deprecated // public byte[] readBytes(byte[] dst, int dstOffset, int len) { // throw new UnsupportedOperationException("use align().readBytes(byte[],int,int) instead!");