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 99c0cbd commit d28b26cCopy full SHA for d28b26c
src/main/java/aztech/modern_industrialization/machines/ComponentStorage.java
@@ -33,12 +33,10 @@
33
import java.util.function.Consumer;
34
import java.util.function.Function;
35
import net.minecraft.resources.ResourceLocation;
36
-import org.jetbrains.annotations.NotNull;
37
38
public sealed class ComponentStorage<C> implements Iterable<C> permits ComponentStorage.GuiServer, ComponentStorage.Server {
39
protected final List<C> components = new ArrayList<>();
40
41
- @NotNull
42
@Override
43
public Iterator<C> iterator() {
44
return components.iterator();
0 commit comments