mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-09 20:20:56 +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];
|
||||
}
|
||||
|
||||
/**
|
||||
* No-args constructor
|
||||
*/
|
||||
/** No-args constructor */
|
||||
public DynamicArray() {
|
||||
this(DEFAULT_CAPACITY);
|
||||
}
|
||||
|
Reference in New Issue
Block a user