Fix annotations
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 25 May 2017 11:26:22 +0000 (13:26 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 25 May 2017 11:26:22 +0000 (13:26 +0200)
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) {