Formatted with Google Java Formatter

This commit is contained in:
github-actions
2021-07-15 14:03:52 +00:00
parent d3a6ba2437
commit 44dfbed43a

View File

@ -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);
}