Skip to content

Commit cccc380

Browse files
committed
#2 - Polishing.
1 parent 831e753 commit cccc380

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/org/springframework/data/r2dbc/function/connectionfactory/ConnectionProxy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface ConnectionProxy extends Connection, Wrapper {
3434
* <p/>
3535
* This will typically be the native driver Connection or a wrapper from a connection pool.
3636
*
37-
* @return the underlying Connection (never {@code null})
37+
* @return the underlying Connection (never {@literal null})
3838
*/
3939
Connection getTargetConnection();
4040
}

src/main/java/org/springframework/data/r2dbc/function/convert/EntityRowMapper.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ public T apply(Row row, RowMetadata metadata) {
8989
/**
9090
* Read a single value or a complete Entity from the {@link ResultSet} passed as an argument.
9191
*
92-
* @param row the {@link Row} to extract the value from. Must not be {@code null}.
93-
* @param property the {@link JdbcPersistentProperty} for which the value is intended. Must not be {@code null}.
94-
* @param prefix to be used for all column names accessed by this method. Must not be {@code null}.
95-
* @return the value read from the {@link ResultSet}. May be {@code null}.
92+
* @param row the {@link Row} to extract the value from. Must not be {@literal null}.
93+
* @param property the {@link JdbcPersistentProperty} for which the value is intended. Must not be {@literal null}.
94+
* @param prefix to be used for all column names accessed by this method. Must not be {@literal null}.
95+
* @return the value read from the {@link ResultSet}. May be {@literal null}.
9696
*/
9797
private Object readFrom(Row row, JdbcPersistentProperty property, String prefix) {
9898

0 commit comments

Comments
 (0)