From ca10302cd9ca75c912518dc95ecfd51395e8dc59 Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Tue, 30 Dec 2025 23:02:56 +0700 Subject: [PATCH] Correct MappingRelationalConverter javadoc Signed-off-by: Tran Ngoc Nhan --- .../core/conversion/MappingRelationalConverter.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-data-relational/src/main/java/org/springframework/data/relational/core/conversion/MappingRelationalConverter.java b/spring-data-relational/src/main/java/org/springframework/data/relational/core/conversion/MappingRelationalConverter.java index 647241fef..b9b56330a 100644 --- a/spring-data-relational/src/main/java/org/springframework/data/relational/core/conversion/MappingRelationalConverter.java +++ b/spring-data-relational/src/main/java/org/springframework/data/relational/core/conversion/MappingRelationalConverter.java @@ -639,9 +639,9 @@ public class MappingRelationalConverter extends AbstractRelationalConverter * Read and convert a single value that is coming from a database to the {@literal targetType} expected by the domain * model. * - * @param value a value as it is returned by the driver accessing the persistence store. May be {@code null}. - * @param targetType {@link TypeInformation} into which the value is to be converted. Must not be {@code null}. - * @return + * @param value a value as it is returned by the driver accessing the persistence store. May be {@literal null}. + * @param targetType {@link TypeInformation} into which the value is to be converted. Must not be {@literal null}. + * @return The converted value. May be {@literal null}. */ @Override @Nullable @@ -658,9 +658,9 @@ public class MappingRelationalConverter extends AbstractRelationalConverter * Checks whether we have a custom conversion for the given simple object. Converts the given value if so, applies * {@link Enum} handling or returns the value as is. * - * @param value to be converted. May be {@code null}.. - * @param type {@link TypeInformation} into which the value is to be converted. Must not be {@code null}. - * @return the converted value if a conversion applies or the original value. Might return {@code null}. + * @param value to be converted. Must not be {@literal null}. + * @param type {@link TypeInformation} into which the value is to be converted. Must not be {@literal null}. + * @return the converted value if a conversion applies or the original value. Must not be {@literal null}. */ @SuppressWarnings({ "rawtypes", "unchecked" }) protected Object getPotentiallyConvertedSimpleRead(Object value, TypeInformation type) {