Remove concatWithSpace since there's nothing to concatenate anymore.

This commit is contained in:
Rob Schnautz
2018-01-20 15:33:11 +00:00
parent cc2b2921d9
commit 244e2a9e8d

View File

@@ -658,9 +658,9 @@ public final class CardDb implements ICardDatabase, IDeckGenPool {
}
if (cardRarity == CardRarity.Unknown) {
System.err.println(TextUtil.concatWithSpace("Forge does not know of such a card's existence. Have you mistyped the card name?"));
System.err.println("Forge does not know of such a card's existence. Have you mistyped the card name?");
} else {
System.err.println(TextUtil.concatWithSpace("We're sorry, but you cannot use this card yet."));
System.err.println("We're sorry, but you cannot use this card yet.");
}
return new PaperCard(CardRules.getUnsupportedCardNamed(request.cardName), cardEdition.getCode(), cardRarity, 1);