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 {