diff --git a/forge-core/src/main/java/forge/card/CardEdition.java b/forge-core/src/main/java/forge/card/CardEdition.java index 0b7558cb3a1..73ce77681fb 100644 --- a/forge-core/src/main/java/forge/card/CardEdition.java +++ b/forge-core/src/main/java/forge/card/CardEdition.java @@ -303,7 +303,7 @@ public final class CardEdition implements Comparable { // immutable enumType = Type.valueOf(type.toUpperCase(Locale.ENGLISH)); } catch (IllegalArgumentException ignored) { // ignore; type will get UNKNOWN - System.err.println(TextUtil.concatWithSpace("Ignoring unknown type in set definitions: name:", TextUtil.addSuffix(res.name, ";"), "type:", type)); + System.err.println("Ignoring unknown type in set definitions: name: " + res.name + "; type: " + type); } } res.type = enumType; @@ -389,7 +389,7 @@ public final class CardEdition implements Comparable { // immutable public CardEdition getEditionByCodeOrThrow(final String code) { final CardEdition set = this.get(code); if (null == set) { - throw new RuntimeException(TextUtil.concatWithSpace("Edition with code", TextUtil.enclosedSingleQuote(code), "not found")); + throw new RuntimeException("Edition with code '" + code + "' not found"); } return set; }