From d69f07cbdbeb3bb721c7aee0e2e05af2e99eeafc Mon Sep 17 00:00:00 2001 From: jendave Date: Sat, 6 Aug 2011 09:05:36 +0000 Subject: [PATCH] - Added generated serials to the new Input functions in Cost_Payment --- src/forge/Cost_Payment.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/forge/Cost_Payment.java b/src/forge/Cost_Payment.java index d829bdf0214..598cdfa6a86 100644 --- a/src/forge/Cost_Payment.java +++ b/src/forge/Cost_Payment.java @@ -625,7 +625,9 @@ public class Cost_Payment { public static Input exileThis(final SpellAbility spell, final Cost_Payment payment) { Input target = new Input() { - @Override + private static final long serialVersionUID = 678668673002725001L; + + @Override public void showMessage() { Card card = spell.getSourceCard(); if(card.getController().equals(Constant.Player.Human) && AllZone.GameAction.isCardInPlay(card)) { @@ -655,7 +657,9 @@ public class Cost_Payment { public static Input exileType(final SpellAbility spell, final String type, final Cost_Payment payment){ Input target = new Input() { - private CardList typeList; + private static final long serialVersionUID = 1403915758082824694L; + + private CardList typeList; private int nExiles = 0; private int nNeeded = payment.getCost().getExileAmount();