Fix annotations
[Sone.git] / src / main / java / net / pterodactylus / sone / utils / NumberParsers.java
index 9e8afb4..ce4da2f 100644 (file)
@@ -13,7 +13,7 @@ import com.google.common.primitives.Longs;
  */
 public class NumberParsers {
 
-       @Nonnull
+       @Nullable
        public static Integer parseInt(@Nullable String text,
                        @Nullable Integer defaultValue) {
                if (text == null) {
@@ -23,7 +23,7 @@ public class NumberParsers {
                return (value == null) ? defaultValue : value;
        }
 
-       @Nonnull
+       @Nullable
        public static Long parseLong(@Nullable String text,
                        @Nullable Long defaultValue) {
                if (text == null) {