Removed redundant remove user from chat call and some formatting.

This commit is contained in:
LevelX2 2014-06-16 07:48:15 +02:00
parent 2c85c54b9f
commit b360bb1528
4 changed files with 4 additions and 9 deletions

View file

@ -45,12 +45,8 @@ import mage.abilities.PlayLandAbility;
import mage.abilities.SpecialAction;
import mage.abilities.SpellAbility;
import mage.abilities.TriggeredAbility;
import mage.abilities.costs.Cost;
import mage.abilities.costs.VariableCost;
import mage.abilities.costs.common.PayLifeCost;
import mage.abilities.costs.common.RemoveCounterCost;
import mage.abilities.costs.common.SacrificeSourceCost;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.costs.mana.ManaCost;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.costs.mana.PhyrexianManaCost;
@ -343,7 +339,7 @@ public class HumanPlayer extends PlayerImpl {
Map<String, Serializable> options = getOptions(target);
if (target.getTargets().size() > 0) {
if (options == null) {
options = new HashMap<String, Serializable>(1);
options = new HashMap<>(1);
}
List<UUID> chosen = (List<UUID>)target.getTargets();
options.put("chosen", (Serializable)chosen);