mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
more java warning cleanup
This commit is contained in:
@@ -28,7 +28,7 @@ public abstract class Move {
|
|||||||
public abstract int getScore();
|
public abstract int getScore();
|
||||||
|
|
||||||
/** The best move. */
|
/** The best move. */
|
||||||
private Move bestMove = null;
|
//private Move bestMove = null;
|
||||||
|
|
||||||
/** The best score. */
|
/** The best score. */
|
||||||
private int bestScore = Integer.MIN_VALUE;
|
private int bestScore = Integer.MIN_VALUE;
|
||||||
@@ -82,7 +82,7 @@ public abstract class Move {
|
|||||||
|
|
||||||
if (first && bestScore < score) {
|
if (first && bestScore < score) {
|
||||||
bestScore = score;
|
bestScore = score;
|
||||||
bestMove = v[i];
|
//bestMove = v[i];
|
||||||
}
|
}
|
||||||
} // for
|
} // for
|
||||||
return score;
|
return score;
|
||||||
|
|||||||
Reference in New Issue
Block a user