[minor] access modifer order

This commit is contained in:
North 2013-03-10 14:47:13 +02:00
parent ec546a5ae6
commit a7a565bb8f
549 changed files with 1032 additions and 1040 deletions

View file

@ -21,16 +21,16 @@ import org.junit.Ignore;
@Ignore
public class MultiConnectTest {
private final static Logger logger = Logger.getLogger(MultiConnectTest.class);
private static final Logger logger = Logger.getLogger(MultiConnectTest.class);
/**
* Amount of games to be started from this test.
*/
private final static Integer USER_CONNECT_COUNT = 200;
private static final Integer USER_CONNECT_COUNT = 200;
private final static CountDownLatch latch = new CountDownLatch(USER_CONNECT_COUNT);
private static final CountDownLatch latch = new CountDownLatch(USER_CONNECT_COUNT);
private final static MageVersion version = new MageVersion(1, 0, 1, "");
private static final MageVersion version = new MageVersion(1, 0, 1, "");
private static volatile int connected;

View file

@ -13,12 +13,12 @@ import org.junit.Ignore;
@Ignore
public class StartMultiGamesTest {
private final static Logger logger = Logger.getLogger(StartMultiGamesTest.class);
private static final Logger logger = Logger.getLogger(StartMultiGamesTest.class);
/**
* Amount of games to be started from this test.
*/
private final static Integer GAME_START_COUNT = 10;
private static final Integer GAME_START_COUNT = 10;
private MageFrame frame = null;
private Object sync = new Object();