String + string concatenation can be replaced by string + char concetenation

This commit is contained in:
vraskulin 2017-03-20 14:00:18 +03:00
parent 1fa9d4a4f6
commit f37c823aa8
4 changed files with 4 additions and 4 deletions

View file

@ -518,7 +518,7 @@ public abstract class AbilityImpl implements Ability {
PhyrexianManaCost phyrexianManaCost = (PhyrexianManaCost)cost;
PayLifeCost payLifeCost = new PayLifeCost(2);
if(payLifeCost.canPay(this, sourceId, controller.getId(), game) &&
controller.chooseUse(Outcome.LoseLife, "Pay 2 life instead of " + phyrexianManaCost.getBaseText() + "?", this, game)) {
controller.chooseUse(Outcome.LoseLife, "Pay 2 life instead of " + phyrexianManaCost.getBaseText() + '?', this, game)) {
costIterator.remove();
costs.add(payLifeCost);
}