removed unused fields

This commit is contained in:
North 2013-03-02 16:25:10 +02:00
parent b5e4d9e795
commit c0f837c2e0
3 changed files with 0 additions and 13 deletions

View file

@ -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 {

View file

@ -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;

View file

@ -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;