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 647241fefd..b9b56330ab 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 @@ private boolean shouldReadEmbeddable(ConversionContext context, RelationalPersis * 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 Object readValue(@Nullable Object value, TypeInformation targetType) { * 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) {