Revise @⁠Nullable declarations for consistency with usage in 7.0

This commit is contained in:
Sam Brannen 2025-01-18 15:07:46 +01:00
parent 863ccd81d5
commit ef05b82920
1 changed files with 2 additions and 4 deletions

View File

@ -78,8 +78,7 @@ public abstract class BeanOverrideHandler {
Comparator.<MergedAnnotation<? extends Annotation>> comparingInt(MergedAnnotation::getDistance).reversed();
@Nullable
private final Field field;
private final @Nullable Field field;
private final Set<Annotation> qualifierAnnotations;
@ -213,8 +212,7 @@ public abstract class BeanOverrideHandler {
/**
* Get the annotated {@link Field}.
*/
@Nullable
public final Field getField() {
public final @Nullable Field getField() {
return this.field;
}