package org.apache.poi.util;
/**
- * A List of int's; as full an implementation of the java.util.List
+ * A List of `int`s; as full an implementation of the java.util.List
* interface as possible, with an eye toward minimal creation of
- * objects
+ * objects.
*
* the mimicry of List is as follows:
* <ul>
* remove(int index)
* <li> subList is not supported
* </ul>
+ *
+ * This class is only meant for internal use in Apache POI.
*/
public class IntList
{
}
int rval = _array[ index ];
+ if(_limit == _array.length) {
+ growArray(_limit + 1);
+ }
System.arraycopy(_array, index + 1, _array, index, _limit - index);
_limit--;
return rval;
if (o == _array[ j ])
{
if (j+1 < _limit) {
+ if(_limit == _array.length) {
+ growArray(_limit + 1);
+ }
System.arraycopy(_array, j + 1, _array, j, _limit - j);
}
_limit--;
assertEquals(a5[j], list.get(j));
}
}
+
+ @Test
+ void bug69351() {
+ final int size = 10;
+ final IntList list = new IntList(size);
+ assertEquals(0, list.size());
+ for (int i = 0; i < size; i++) {
+ list.add(i);
+ }
+ assertEquals(size, list.size());
+ assertTrue(list.removeValue(size - 2));
+ assertEquals(size - 1, list.size());
+ }
+
+ @Test
+ void testRemove69351() {
+ final int size = 10;
+ final IntList list = new IntList(size);
+ assertEquals(0, list.size());
+ for (int i = 0; i < size; i++) {
+ list.add(i);
+ }
+ assertEquals(size, list.size());
+ assertEquals(size - 2, list.remove(size - 2));
+ assertEquals(size - 1, list.size());
+ }
}