From 01ca3689b3831e6b1fa1c9b2b29472de05973375 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 3 Oct 2016 20:25:17 +0200 Subject: [PATCH] Some minor changes. --- Mage.Common/src/mage/view/AbilityPickerView.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Common/src/mage/view/AbilityPickerView.java b/Mage.Common/src/mage/view/AbilityPickerView.java index 489883f31a..b0572c0bb4 100644 --- a/Mage.Common/src/mage/view/AbilityPickerView.java +++ b/Mage.Common/src/mage/view/AbilityPickerView.java @@ -24,8 +24,7 @@ * The views and conclusions contained in the software and documentation are those of the * authors and should not be interpreted as representing official policies, either expressed * or implied, of BetaSteward_at_googlemail.com. -*/ - + */ package mage.view; import java.io.Serializable; @@ -40,12 +39,13 @@ import mage.abilities.Ability; * @author BetaSteward_at_googlemail.com */ public class AbilityPickerView implements Serializable { + private static final long serialVersionUID = 1L; - private Map choices = new LinkedHashMap(); + private Map choices = new LinkedHashMap<>(); public AbilityPickerView(String objectName, List abilities) { - for (Ability ability: abilities) { + for (Ability ability : abilities) { if (objectName == null) { choices.put(ability.getId(), ability.getRule(true)); } else {