* Simplified version info handling.

This commit is contained in:
LevelX2 2014-02-11 19:36:05 +01:00
parent c397a8eac2
commit d4592b2ee2
6 changed files with 21 additions and 16 deletions

View file

@ -30,17 +30,17 @@ public class MultiConnectTest {
private static final CountDownLatch latch = new CountDownLatch(USER_CONNECT_COUNT);
private static final MageVersion version = new MageVersion(1, 3, 0, "");
private static final MageVersion version = new MageVersion(1, 3, 0, MageVersion.MAGE_VERSION_INFO);
private static volatile int connected;
private Object sync = new Object();
private final Object sync = new Object();
private MageUI ui;
private class ClientMock implements MageClient {
private Session session;
private String username;
private final String username;
public ClientMock(String username) {
this.username = username;