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.
1 parent 0008bb1 commit cae1041Copy full SHA for cae1041
src/main/java/edu/ie3/datamodel/models/input/container/InputContainer.java
@@ -15,11 +15,6 @@ public interface InputContainer<T extends InputEntity> extends Serializable {
15
/** @return unmodifiable List of all entities */
16
List<T> allEntitiesAsList();
17
18
- /** Returns number of holded elements in the container. */
19
- default int numberOfElements() {
20
- return allEntitiesAsList().size();
21
- }
22
-
23
/** Returns an input container copy builder */
24
InputContainerCopyBuilder<T, ? extends InputContainer<T>> copy();
25
0 commit comments