Drop nullable annotation usage to compile

Thanks CI
This commit is contained in:
games647
2020-03-14 19:06:05 +01:00
parent b0cf6e39c7
commit 8ecb5657d3

View File

@ -6,8 +6,6 @@ import java.time.Instant;
import java.util.Optional;
import java.util.UUID;
import javax.annotation.Nullable;
public class StoredProfile extends Profile {
private long rowId;
@ -45,7 +43,7 @@ public class StoredProfile extends Profile {
this.rowId = generatedId;
}
@Nullable
// can be null
public synchronized UUID getId() {
return id;
}