From a849d6c7b5a052d1e7432d87cc4c79a80e18bec7 Mon Sep 17 00:00:00 2001 From: Jens Schauder Date: Thu, 8 Jan 2026 10:43:30 +0100 Subject: [PATCH] Polishing. Improve wording. Original pull request #3438 --- .../org/springframework/data/util/KotlinReflectionUtils.java | 2 +- .../java/org/springframework/data/util/ReflectionUtils.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/util/KotlinReflectionUtils.java b/src/main/java/org/springframework/data/util/KotlinReflectionUtils.java index 7e287ec43..f865414db 100644 --- a/src/main/java/org/springframework/data/util/KotlinReflectionUtils.java +++ b/src/main/java/org/springframework/data/util/KotlinReflectionUtils.java @@ -169,7 +169,7 @@ public final class KotlinReflectionUtils { } /** - * Returns {@literal true} whether the given {@link MethodParameter} is nullable. Its declaring method can reference a + * Returns whether the given {@link MethodParameter} is nullable. Its declaring method can reference a * Kotlin function, property or interface property. * * @return {@literal true} if {@link MethodParameter} is nullable. diff --git a/src/main/java/org/springframework/data/util/ReflectionUtils.java b/src/main/java/org/springframework/data/util/ReflectionUtils.java index b86df3e3f..d77fa68b4 100644 --- a/src/main/java/org/springframework/data/util/ReflectionUtils.java +++ b/src/main/java/org/springframework/data/util/ReflectionUtils.java @@ -479,7 +479,7 @@ public final class ReflectionUtils { } /** - * Returns {@literal true} whether the given {@link MethodParameter} is nullable. Nullable parameters are reference types + * Returns whether the given {@link MethodParameter} is nullable. Nullable parameters are reference types * and ones that are defined in Kotlin as such. * * @return {@literal true} if {@link MethodParameter} is nullable.