1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-13 10:42:54 +00:00

Implemented AccountID object

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-14 14:35:18 -03:00
parent fddc6fbfbb
commit d8d561688b
27 changed files with 200 additions and 54 deletions

View File

@@ -26,8 +26,8 @@ public class IDFactoryTest {
@Test
public void testCreateID() {
final ID id1 = charIdFactory.createID();
final ID id2 = charIdFactory.createID();
final ID<Integer> id1 = charIdFactory.createID();
final ID<Integer> id2 = charIdFactory.createID();
Assert.assertNotNull(id1);
Assert.assertFalse(id1.equals(id2));
}