Skip to content

Commit

Permalink
chore: minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Oct 6, 2024
1 parent 588969b commit 3a3f539
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public enum MethodReturnKind {
}

private static final Set<String> NULLABLE_ANNOTATIONS = Set.of( //
org.eclipse.jdt.annotation.Nullable.class.getName(), //
"android.annotation.Nullable", //
"android.support.annotation.Nullable", //
"androidx.annotation.Nullable", //
Expand All @@ -52,7 +53,6 @@ public enum MethodReturnKind {
"org.checkerframework.checker.nullness.compatqual.NullableDecl", //
"org.checkerframework.checker.nullness.compatqual.NullableType", //
"org.checkerframework.checker.nullness.qual.Nullable", //
"org.eclipse.jdt.annotation.Nullable", //
"org.eclipse.sisu.Nullable", //
"org.jetbrains.annotations.Nullable", //
"org.jmlspecs.annotation.Nullable", //
Expand All @@ -65,6 +65,7 @@ public enum MethodReturnKind {
"reactor.util.annotation.Nullable");

private static final Set<String> NONNULL_ANNOTATIONS = Set.of( //
org.eclipse.jdt.annotation.NonNull.class.getName(), //
"android.annotation.NonNull", //
"android.support.annotation.NonNull", //
"androidx.annotation.NonNull", //
Expand All @@ -82,7 +83,6 @@ public enum MethodReturnKind {
"org.checkerframework.checker.nullness.compatqual.NonNullDecl", //
"org.checkerframework.checker.nullness.compatqual.NonNullType", //
"org.checkerframework.checker.nullness.qual.NonNull", //
"org.eclipse.jdt.annotation.NonNull", //
"org.jetbrains.annotations.NotNull", //
"org.jmlspecs.annotation.NonNull", //
"org.netbeans.api.annotations.common.NonNull", //
Expand Down

0 comments on commit 3a3f539

Please sign in to comment.