From 8ecb5657d3407da7f9cb3ed36b14cccc1a0f02ae Mon Sep 17 00:00:00 2001 From: games647 Date: Sat, 14 Mar 2020 19:06:05 +0100 Subject: [PATCH] Drop nullable annotation usage to compile Thanks CI --- .../com/github/games647/fastlogin/core/StoredProfile.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/src/main/java/com/github/games647/fastlogin/core/StoredProfile.java b/core/src/main/java/com/github/games647/fastlogin/core/StoredProfile.java index 7a7a6dcc..786a174d 100644 --- a/core/src/main/java/com/github/games647/fastlogin/core/StoredProfile.java +++ b/core/src/main/java/com/github/games647/fastlogin/core/StoredProfile.java @@ -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; }