Skip to content

Commit

Permalink
44444444
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaroslav Narozhnyi committed Dec 11, 2024
1 parent f1c0c1b commit aaeb4aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/core/basesyntax/ArrayList.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class ArrayList<T> implements List<T> {
private int size;
private int capacity = 10;
private int capacity = 10;
private T[] data = (T[])new Object[capacity];

@Override
Expand Down

0 comments on commit aaeb4aa

Please sign in to comment.