forked from TuxCoding/FastLogin
Drop nullable annotation usage to compile
Thanks CI
This commit is contained in:
@ -6,8 +6,6 @@ import java.time.Instant;
|
|||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
public class StoredProfile extends Profile {
|
public class StoredProfile extends Profile {
|
||||||
|
|
||||||
private long rowId;
|
private long rowId;
|
||||||
@ -45,7 +43,7 @@ public class StoredProfile extends Profile {
|
|||||||
this.rowId = generatedId;
|
this.rowId = generatedId;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
// can be null
|
||||||
public synchronized UUID getId() {
|
public synchronized UUID getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user