mirror of
https://github.com/correl/mage.git
synced 2024-12-25 19:25:41 +00:00
Some minor changes.
This commit is contained in:
parent
9a00dd20ca
commit
01ca3689b3
1 changed files with 4 additions and 4 deletions
|
@ -25,7 +25,6 @@
|
||||||
* authors and should not be interpreted as representing official policies, either expressed
|
* authors and should not be interpreted as representing official policies, either expressed
|
||||||
* or implied, of BetaSteward_at_googlemail.com.
|
* or implied, of BetaSteward_at_googlemail.com.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package mage.view;
|
package mage.view;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
@ -40,9 +39,10 @@ import mage.abilities.Ability;
|
||||||
* @author BetaSteward_at_googlemail.com
|
* @author BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class AbilityPickerView implements Serializable {
|
public class AbilityPickerView implements Serializable {
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
private Map<UUID, String> choices = new LinkedHashMap<UUID, String>();
|
private Map<UUID, String> choices = new LinkedHashMap<>();
|
||||||
|
|
||||||
public AbilityPickerView(String objectName, List<? extends Ability> abilities) {
|
public AbilityPickerView(String objectName, List<? extends Ability> abilities) {
|
||||||
for (Ability ability : abilities) {
|
for (Ability ability : abilities) {
|
||||||
|
|
Loading…
Reference in a new issue