Remove unneeded @NonNull annotations

See gh-28797
This commit is contained in:
Sébastien Deleuze
2024-12-18 18:22:54 +01:00
parent bc5d771a06
commit 0e85d950b3
16 changed files with 18 additions and 38 deletions

View File

@@ -22,7 +22,6 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.jspecify.annotations.NonNull;
import org.jspecify.annotations.Nullable;
import org.springframework.core.BridgeMethodResolver;
@@ -264,7 +263,7 @@ public class AnnotatedMethod {
}
@Override
public @NonNull Method getMethod() {
public Method getMethod() {
return AnnotatedMethod.this.getBridgedMethod();
}