mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
a few more cleanups
This commit is contained in:
@@ -7,12 +7,6 @@ package forge.game;
|
||||
*/
|
||||
public class GamePlayerRating {
|
||||
|
||||
/** The has won the coin. */
|
||||
private boolean hasWonTheCoin;
|
||||
|
||||
/** The turns made. */
|
||||
private int turnsMade = 0;
|
||||
|
||||
/** The opening hand size. */
|
||||
private int openingHandSize = 7;
|
||||
|
||||
|
||||
@@ -306,7 +306,7 @@ class CustomLimited {
|
||||
/**
|
||||
* @param name the name to set
|
||||
*/
|
||||
private void setName(String name1) {
|
||||
private void setName(String name) {
|
||||
this.name = name; // TODO: Add 0 to parameter's name.
|
||||
}
|
||||
}
|
||||
|
||||
@@ -29,7 +29,6 @@ import javax.swing.event.MouseInputAdapter;
|
||||
import javax.swing.table.DefaultTableModel;
|
||||
|
||||
import net.miginfocom.swing.MigLayout;
|
||||
import forge.CardList;
|
||||
import forge.MyRandom;
|
||||
import forge.card.CardRules;
|
||||
import forge.card.CardType;
|
||||
@@ -96,10 +95,6 @@ public class DeckAnalysis extends javax.swing.JDialog {
|
||||
private JLabel jLabel2;
|
||||
private JButton jButtonOk;
|
||||
private final JFrame jF;
|
||||
// private ButtonGroup buttonGroup1;
|
||||
|
||||
/** The filter card list. */
|
||||
private CardList filterCardList;
|
||||
|
||||
/** The deck. */
|
||||
private ItemPoolView<CardPrinted> deck;
|
||||
|
||||
@@ -24,8 +24,6 @@ public class InputControl extends MyObservable implements java.io.Serializable {
|
||||
|
||||
private Input input;
|
||||
|
||||
/** Constant <code>n=0</code>. */
|
||||
private static int n = 0;
|
||||
private final Stack<Input> inputStack = new Stack<Input>();
|
||||
private final Stack<Input> resolvingStack = new Stack<Input>();
|
||||
private final LinkedList<Input> resolvingQueue = new LinkedList<Input>();
|
||||
|
||||
Reference in New Issue
Block a user