We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 13462fc + 1e23055 commit 3edd42dCopy full SHA for 3edd42d
lectures/17-oop/code/src/com/kunal/generics/CustomGenArrayList.java
@@ -9,7 +9,7 @@ public class CustomGenArrayList<T> {
9
10
private Object[] data;
11
private static int DEFAULT_SIZE = 10;
12
- private int size = 0; // also working as inde value
+ private int size = 0; // also working as index value
13
14
public CustomGenArrayList() {
15
data = new Object[DEFAULT_SIZE];
0 commit comments