Removed old code

This commit is contained in:
7u83 2018-12-08 18:34:41 +01:00
parent 8232759f8c
commit df2c535bd4
1 changed files with 1 additions and 1 deletions

View File

@ -65,6 +65,6 @@ public class IDGenerator {
* @return the next generated ID
*/
public synchronized Id getNext() {
return new Id<Long>(next_id++);
return new Id<>(next_id++);
}
}