[CI-SKIP] Remove bad null annotation (#5538)

This commit is contained in:
Jake Potrebic
2021-04-23 14:08:56 -07:00
parent 99eeb79087
commit 98eb2c8d94
2 changed files with 6 additions and 4 deletions

View File

@@ -2397,8 +2397,10 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
}
+
+ @Nullable public UUID getUUID(String prefix) { return a(prefix); } // Paper - OBFHELPER
+ @Nullable
+ /**
+ * You must use {@link #hasUUID(String)} before or else it <b>will</b> throw an NPE.
+ */
+ public UUID getUUID(String prefix) { return a(prefix); } // Paper - OBFHELPER
public UUID a(String s) {
return GameProfileSerializer.a(this.get(s));
}