Make IntArrayList consistent with other primitive array lists, using code generator

PiperOrigin-RevId: 633042614
pull/16766/head
Mark Hansen 7 months ago committed by Copybara-Service
parent ddc70b0ebf
commit f7a866a9ea
  1. 2
      java/core/src/main/java/com/google/protobuf/IntArrayList.java

@ -47,7 +47,7 @@ final class IntArrayList extends AbstractProtobufList<Integer>
*/
private IntArrayList(int[] other, int size, boolean isMutable) {
super(isMutable);
array = other;
this.array = other;
this.size = size;
}

Loading…
Cancel
Save