Skip to content

Commit

Permalink
Make IntArrayList consistent with other primitive array lists, using …
Browse files Browse the repository at this point in the history
…code generator

PiperOrigin-RevId: 633042614
  • Loading branch information
mhansen authored and copybara-github committed May 13, 2024
1 parent ddc70b0 commit f7a866a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static IntArrayList emptyList() {
*/
private IntArrayList(int[] other, int size, boolean isMutable) {
super(isMutable);
array = other;
this.array = other;
this.size = size;
}

Expand Down

0 comments on commit f7a866a

Please sign in to comment.