aboutsummaryrefslogtreecommitdiff
path: root/java/core/src/main/java/com/google/protobuf/IntArrayList.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/core/src/main/java/com/google/protobuf/IntArrayList.java')
-rw-r--r--java/core/src/main/java/com/google/protobuf/IntArrayList.java20
1 files changed, 6 insertions, 14 deletions
diff --git a/java/core/src/main/java/com/google/protobuf/IntArrayList.java b/java/core/src/main/java/com/google/protobuf/IntArrayList.java
index aacd71e1..c9b12c42 100644
--- a/java/core/src/main/java/com/google/protobuf/IntArrayList.java
+++ b/java/core/src/main/java/com/google/protobuf/IntArrayList.java
@@ -46,6 +46,7 @@ final class IntArrayList extends AbstractProtobufList<Integer>
implements IntList, RandomAccess, PrimitiveNonBoxingCollection {
private static final IntArrayList EMPTY_LIST = new IntArrayList();
+
static {
EMPTY_LIST.makeImmutable();
}
@@ -54,9 +55,7 @@ final class IntArrayList extends AbstractProtobufList<Integer>
return EMPTY_LIST;
}
- /**
- * The backing store for the list.
- */
+ /** The backing store for the list. */
private int[] array;
/**
@@ -65,16 +64,13 @@ final class IntArrayList extends AbstractProtobufList<Integer>
*/
private int size;
- /**
- * Constructs a new mutable {@code IntArrayList} with default capacity.
- */
+ /** Constructs a new mutable {@code IntArrayList} with default capacity. */
IntArrayList() {
this(new int[DEFAULT_CAPACITY], 0);
}
/**
- * Constructs a new mutable {@code IntArrayList}
- * containing the same elements as {@code other}.
+ * Constructs a new mutable {@code IntArrayList} containing the same elements as {@code other}.
*/
private IntArrayList(int[] other, int size) {
array = other;
@@ -168,17 +164,13 @@ final class IntArrayList extends AbstractProtobufList<Integer>
addInt(index, element);
}
- /**
- * Like {@link #add(Integer)} but more efficient in that it doesn't box the element.
- */
+ /** Like {@link #add(Integer)} but more efficient in that it doesn't box the element. */
@Override
public void addInt(int element) {
addInt(size, element);
}
- /**
- * Like {@link #add(int, Integer)} but more efficient in that it doesn't box the element.
- */
+ /** Like {@link #add(int, Integer)} but more efficient in that it doesn't box the element. */
private void addInt(int index, int element) {
ensureIsMutable();
if (index < 0 || index > size) {