From 23fc7dd1837f3f190be6547db0af22e6f919377e Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Fri, 21 Aug 2026 15:24:25 -0700 Subject: [PATCH] Fix warning from NullAway 0.14.0 related to override See gh-51409 Signed-off-by: Manu Sridharan --- .../boot/convert/LenientObjectToEnumConverterFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/spring-boot/src/main/java/org/springframework/boot/convert/LenientObjectToEnumConverterFactory.java b/core/spring-boot/src/main/java/org/springframework/boot/convert/LenientObjectToEnumConverterFactory.java index 15abac18abe..1195fe4f847 100644 --- a/core/spring-boot/src/main/java/org/springframework/boot/convert/LenientObjectToEnumConverterFactory.java +++ b/core/spring-boot/src/main/java/org/springframework/boot/convert/LenientObjectToEnumConverterFactory.java @@ -51,7 +51,7 @@ abstract class LenientObjectToEnumConverterFactory implements ConverterFactor @Override @SuppressWarnings("unchecked") - public > Converter getConverter(Class targetType) { + public > Converter getConverter(Class targetType) { Class enumType = targetType; while (enumType != null && !enumType.isEnum()) { enumType = enumType.getSuperclass();