#2 - Polishing.

This commit is contained in:
Mark Paluch
2018-06-22 11:12:21 +02:00
parent 831e753658
commit cccc3808aa
2 changed files with 5 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ public interface ConnectionProxy extends Connection, Wrapper {
* <p/>
* 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();
}

View File

@@ -89,10 +89,10 @@ public class EntityRowMapper<T> implements BiFunction<Row, RowMetadata, T> {
/**
* 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) {