mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 05:52:06 -08:00
[minor] access modifer order
This commit is contained in:
parent
ec546a5ae6
commit
a7a565bb8f
549 changed files with 1032 additions and 1040 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue