removed empty lines

master
melvin 2011-06-25 10:49:33 +08:00
parent cbe5da78da
commit 6cb37433cb
1 changed files with 1 additions and 5 deletions

View File

@ -59,29 +59,25 @@ public class PermanentButton extends PanelButton implements ChoiceViewer {
@Override
public void mouseClicked() {
controller.processClick(permanentInfo.permanent);
}
@Override
public void mouseEntered() {
controller.viewCard(permanentInfo.cardDefinition,permanentInfo.index);
}
@Override
public void showValidChoices(final Set<Object> validChoices) {
setValid(validChoices.contains(permanentInfo.permanent));
}
@Override
public Color getValidColor() {
if (controller.isCombatChoice()) {
return ThemeFactory.getInstance().getCurrentTheme().getColor(Theme.COLOR_COMBAT_CHOICE);
} else {
return ThemeFactory.getInstance().getCurrentTheme().getChoiceColor();
}
}
}
}