Skip to content

Commit 800f3e3

Browse files
committed
wrong message
1 parent b493fbf commit 800f3e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/gregtech/api/color/ColoredBlockContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public abstract class ColoredBlockContainer {
3838
public static void registerContainer(@NotNull ColoredBlockContainer container) {
3939
Objects.requireNonNull(container, "A null ColoredBlockContainer cannot be registered!");
4040
ResourceLocation id = container.id;
41-
Objects.requireNonNull(id, "A null ColoredBlockContainer cannot have a null ID!");
41+
Objects.requireNonNull(id, "A ColoredBlockContainer cannot have a null ID!");
4242
if (CONTAINERS.containsKey(id)) {
4343
throw new IllegalArgumentException(
4444
String.format("A ColoredBlockContainer with an ID of %s already exists!", id));

0 commit comments

Comments
 (0)