fix: remove unused constructor

This commit is contained in:
Arnaud Vergnet 2020-12-07 15:03:24 +01:00
parent d351f25e3a
commit 0b13c1242b

View file

@ -16,10 +16,6 @@ public class CurrentUser extends User {
private CurrentUser() {
super();
}
private CurrentUser(int uniqueId) {
super(uniqueId);
state = State.UNINITIALIZED;
}