removed empty lines

master
melvin 2011-06-25 10:49:51 +08:00
parent 6cb37433cb
commit 1c39ebd78e
1 changed files with 1 additions and 4 deletions

View File

@ -85,7 +85,6 @@ public abstract class CardListViewer extends JPanel implements ChoiceViewer {
cardPanel.setPreferredSize(new Dimension(0,6));
} else {
for (final MagicCard card : cardList) {
final CardButton button=new CardButton(card);
buttons.add(button);
cardPanel.add(button);
@ -101,9 +100,7 @@ public abstract class CardListViewer extends JPanel implements ChoiceViewer {
@Override
public void showValidChoices(final Set<Object> validChoices) {
for (final CardButton button : buttons) {
button.showValidChoices(validChoices);
}
}
@ -169,4 +166,4 @@ public abstract class CardListViewer extends JPanel implements ChoiceViewer {
return ThemeFactory.getInstance().getCurrentTheme().getChoiceColor();
}
}
}
}