From cccc3808aaa8d051905ae08144d4787f6cd218c5 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 22 Jun 2018 11:12:21 +0200 Subject: [PATCH] #2 - Polishing. --- .../r2dbc/function/connectionfactory/ConnectionProxy.java | 2 +- .../data/r2dbc/function/convert/EntityRowMapper.java | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/springframework/data/r2dbc/function/connectionfactory/ConnectionProxy.java b/src/main/java/org/springframework/data/r2dbc/function/connectionfactory/ConnectionProxy.java index 09b16ac..2bb0ff2 100644 --- a/src/main/java/org/springframework/data/r2dbc/function/connectionfactory/ConnectionProxy.java +++ b/src/main/java/org/springframework/data/r2dbc/function/connectionfactory/ConnectionProxy.java @@ -34,7 +34,7 @@ public interface ConnectionProxy extends Connection, Wrapper { *

* This will typically be the native driver Connection or a wrapper from a connection pool. * - * @return the underlying Connection (never {@code null}) + * @return the underlying Connection (never {@literal null}) */ Connection getTargetConnection(); } diff --git a/src/main/java/org/springframework/data/r2dbc/function/convert/EntityRowMapper.java b/src/main/java/org/springframework/data/r2dbc/function/convert/EntityRowMapper.java index bcf32bd..7d21d34 100644 --- a/src/main/java/org/springframework/data/r2dbc/function/convert/EntityRowMapper.java +++ b/src/main/java/org/springframework/data/r2dbc/function/convert/EntityRowMapper.java @@ -89,10 +89,10 @@ public class EntityRowMapper implements BiFunction { /** * Read a single value or a complete Entity from the {@link ResultSet} passed as an argument. * - * @param row the {@link Row} to extract the value from. Must not be {@code null}. - * @param property the {@link JdbcPersistentProperty} for which the value is intended. Must not be {@code null}. - * @param prefix to be used for all column names accessed by this method. Must not be {@code null}. - * @return the value read from the {@link ResultSet}. May be {@code null}. + * @param row the {@link Row} to extract the value from. Must not be {@literal null}. + * @param property the {@link JdbcPersistentProperty} for which the value is intended. Must not be {@literal null}. + * @param prefix to be used for all column names accessed by this method. Must not be {@literal null}. + * @return the value read from the {@link ResultSet}. May be {@literal null}. */ private Object readFrom(Row row, JdbcPersistentProperty property, String prefix) {