* @param nameIndex position of the named range (0-based)
* @return the defined name at the specified index
* @throws IllegalArgumentException if the supplied index is invalid
- * @deprecated 3.18. New projects should avoid accessing named ranges by index.
+ * @deprecated 4.0.0. New projects should avoid accessing named ranges by index.
*/
@Deprecated
- @Removal(version="3.20")
+ @Removal(version="5.0.0")
Name getNameAt(int nameIndex);
/**
if (length > (long)Integer.MAX_VALUE) {
throw new RecordFormatException("Can't allocate an array > "+Integer.MAX_VALUE);
}
- if (BYTE_ARRAY_MAX_OVERRIDE > 0) {
- if (length > BYTE_ARRAY_MAX_OVERRIDE) {
- throwRFE(length, BYTE_ARRAY_MAX_OVERRIDE);
- }
- } else if (length > maxLength) {
- throwRFE(length, maxLength);
- }
+ checkLength(length, maxLength);
final int len = Math.min((int)length, maxLength);
ByteArrayOutputStream baos = new ByteArrayOutputStream(len == Integer.MAX_VALUE ? 4096 : len);
return baos.toByteArray();
}
-
+ private static void checkLength(long length, int maxLength) {
+ if (BYTE_ARRAY_MAX_OVERRIDE > 0) {
+ if (length > BYTE_ARRAY_MAX_OVERRIDE) {
+ throwRFE(length, BYTE_ARRAY_MAX_OVERRIDE);
+ }
+ } else if (length > maxLength) {
+ throwRFE(length, maxLength);
+ }
+ }
+
+
/**
* Returns an array (that shouldn't be written to!) of the
* ByteBuffer. Will be of the requested length, or possibly
if (length > (long)Integer.MAX_VALUE) {
throw new RecordFormatException("Can't allocate an array > "+Integer.MAX_VALUE);
}
- if (BYTE_ARRAY_MAX_OVERRIDE > 0) {
- if (length > BYTE_ARRAY_MAX_OVERRIDE) {
- throwRFE(length, BYTE_ARRAY_MAX_OVERRIDE);
- }
- } else if (length > maxLength) {
- throwRFE(length, maxLength);
- }
+ checkLength(length, maxLength);
return new byte[(int)length];
}
}
@AfterClass
- public static void tearDown() throws IOException {
+ public static void tearDown() {
assertTrue(TMP.delete());
}
}
@Test
- public void testToByteArrayByteBuffer() throws Exception {
+ public void testToByteArrayByteBuffer() {
assertArrayEquals(new byte[] { 1, 2, 3},
IOUtils.toByteArray(ByteBuffer.wrap(new byte[]{1, 2, 3}), 10));
}
@Test
- public void testToByteArrayByteBufferToSmall() throws Exception {
+ public void testToByteArrayByteBufferToSmall() {
assertArrayEquals(new byte[] { 1, 2, 3, 4, 5, 6, 7},
IOUtils.toByteArray(ByteBuffer.wrap(new byte[]{1, 2, 3, 4, 5, 6, 7}), 3));
}
int readCalled;
@Override
- public int read() throws IOException {
+ public int read() {
readCalled++;
return 0;
}
@Override
- public int read(byte[] arr, int offset, int len) throws IOException {
+ public int read(byte[] arr, int offset, int len) {
readCalled++;
return len;
}
@Override
- public long skip(long len) throws IOException {
+ public long skip(long len) {
skipCalled++;
if (skipCalled == 1) {
return 0;