This commit is contained in:
Oleg Agafonov 2019-03-06 14:06:47 +04:00
parent e0371bb22b
commit e68b79336a
9 changed files with 20 additions and 20 deletions

View file

@ -482,7 +482,7 @@ public class ObjectColor implements Serializable, Copyable<ObjectColor>, Compara
public ColoredManaSymbol getOneColoredManaSymbol() {
if (isMulticolored()) {
throw new IllegalStateException("Founded multicolored object, but it's must call with single mana color.");
throw new IllegalStateException("Found multicolored object, but it's must call with single mana color.");
}
if (isBlack()) {

View file

@ -56,7 +56,7 @@ public class DckDeckImporter extends PlainTextDeckImporter {
CardInfo foundedCard = CardRepository.instance.findCard(setCode, cardNum);
boolean wasOutdated = false;
if ((foundedCard != null) && !foundedCard.getName().equals(cardName)){
sbMessage.append("Line ").append(lineCount).append(": ").append("founded outdated card number or name, will try to replace: ").append(line).append('\n');
sbMessage.append("Line ").append(lineCount).append(": ").append("found outdated card number or name, will try to replace: ").append(line).append('\n');
wasOutdated = true;
foundedCard = null;
}