checkstyle

This commit is contained in:
jendave
2011-10-25 22:42:59 +00:00
parent 31c1adfa45
commit ad8b0665c9
3 changed files with 582 additions and 321 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -7,8 +7,8 @@ package forge;
* @version $Id$
*/
public interface Command extends java.io.Serializable {
/** Constant <code>Blank</code> */
public static Command Blank = new Command() {
/** Constant <code>Blank</code>. */
Command Blank = new Command() {
private static final long serialVersionUID = 2689172297036001710L;
@@ -19,5 +19,5 @@ public interface Command extends java.io.Serializable {
/**
* <p>execute.</p>
*/
public void execute();
void execute();
}

View File

@@ -134,7 +134,8 @@ public class ComputerAI_General implements Computer {
creatures2.add(creatures.get(i));
}
}
if (creatures2.size() + CardUtil.getThisTurnCast("Creature.YouCtrl", vengevines.get(0)).size() > 1
if (creatures2.size()
+ CardUtil.getThisTurnCast("Creature.YouCtrl", vengevines.get(0)).size() > 1
&& c.isCreature()
&& CardUtil.getConvertedManaCost(c.getManaCost()) <= 3) {
return true;