forked from External/mage
Revert "introduced StringUtil class with .isEmpty(String input) and .isNotEmp…"
This commit is contained in:
parent
18e771ccd5
commit
d7dd635bca
51 changed files with 96 additions and 294 deletions
|
|
@ -37,7 +37,6 @@ import mage.abilities.effects.OneShotEffect;
|
|||
import mage.game.Game;
|
||||
import mage.game.turn.TurnMod;
|
||||
import mage.players.Player;
|
||||
import mage.util.StringUtil;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -78,7 +77,7 @@ public class SkipNextPlayerUntapStepEffect extends OneShotEffect {
|
|||
@Override
|
||||
public String getText(Mode mode) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
if (StringUtil.isNotEmpty(staticText)) {
|
||||
if (staticText.length() > 0) {
|
||||
sb.append(staticText);
|
||||
} else {
|
||||
sb.append("target");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue