We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b493fbf commit 800f3e3Copy full SHA for 800f3e3
1 file changed
src/main/java/gregtech/api/color/ColoredBlockContainer.java
@@ -38,7 +38,7 @@ public abstract class ColoredBlockContainer {
38
public static void registerContainer(@NotNull ColoredBlockContainer container) {
39
Objects.requireNonNull(container, "A null ColoredBlockContainer cannot be registered!");
40
ResourceLocation id = container.id;
41
- Objects.requireNonNull(id, "A null ColoredBlockContainer cannot have a null ID!");
+ Objects.requireNonNull(id, "A ColoredBlockContainer cannot have a null ID!");
42
if (CONTAINERS.containsKey(id)) {
43
throw new IllegalArgumentException(
44
String.format("A ColoredBlockContainer with an ID of %s already exists!", id));
0 commit comments