mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-10 04:26:27 +08:00
Formatted with Google Java Formatter
This commit is contained in:
@ -28,9 +28,7 @@ public class DynamicArray<E> implements Iterable<E> {
|
|||||||
this.elements = new Object[this.capacity];
|
this.elements = new Object[this.capacity];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** No-args constructor */
|
||||||
* No-args constructor
|
|
||||||
*/
|
|
||||||
public DynamicArray() {
|
public DynamicArray() {
|
||||||
this(DEFAULT_CAPACITY);
|
this(DEFAULT_CAPACITY);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user