mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
removed unused fields
This commit is contained in:
parent
b5e4d9e795
commit
c0f837c2e0
3 changed files with 0 additions and 13 deletions
|
@ -1,7 +1,5 @@
|
|||
package org.mage.card.arcane;
|
||||
|
||||
import java.awt.AWTException;
|
||||
import java.awt.Robot;
|
||||
import java.io.IOException;
|
||||
import java.net.DatagramPacket;
|
||||
import java.net.DatagramSocket;
|
||||
|
@ -21,15 +19,6 @@ public class Util {
|
|||
public static final boolean isMac = System.getProperty("os.name").toLowerCase().indexOf("mac") != -1;
|
||||
public static final boolean isWindows = System.getProperty("os.name").toLowerCase().indexOf("windows") == -1;
|
||||
|
||||
public static Robot robot;
|
||||
static {
|
||||
try {
|
||||
new Robot();
|
||||
} catch (AWTException ex) {
|
||||
throw new RuntimeException("Error creating robot.", ex);
|
||||
}
|
||||
}
|
||||
|
||||
public static final ThreadPoolExecutor threadPool;
|
||||
static private int threadCount;
|
||||
static {
|
||||
|
|
|
@ -46,7 +46,6 @@ import java.util.*;
|
|||
public abstract class MatchImpl implements Match {
|
||||
|
||||
protected UUID id = UUID.randomUUID();
|
||||
protected String name;
|
||||
protected List<MatchPlayer> players = new ArrayList<MatchPlayer>();
|
||||
protected List<Game> games = new ArrayList<Game>();
|
||||
protected MatchOptions options;
|
||||
|
|
|
@ -39,7 +39,6 @@ import mage.players.Player;
|
|||
public class TournamentPlayer {
|
||||
|
||||
protected int points;
|
||||
protected String name;
|
||||
protected String playerType;
|
||||
protected Player player;
|
||||
protected Deck deck;
|
||||
|
|
Loading…
Reference in a new issue