@@ -163,7 +163,7 @@ public interface JdbcOperations {
163
163
* @param sql the SQL query to execute
164
164
* @param rowMapper a callback that will map one object per row
165
165
* @return the single mapped object (may be {@code null} if the given
166
- * {@link RowMapper} returned {@code} null)
166
+ * {@link RowMapper} returned {@code null} )
167
167
* @throws org.springframework.dao.IncorrectResultSizeDataAccessException
168
168
* if the query does not return exactly one row
169
169
* @throws DataAccessException if there is any problem executing the query
@@ -598,7 +598,7 @@ <T> Stream<T> queryForStream(String sql, RowMapper<T> rowMapper, @Nullable Objec
598
598
* (constants from {@code java.sql.Types})
599
599
* @param rowMapper a callback that will map one object per row
600
600
* @return the single mapped object (may be {@code null} if the given
601
- * {@link RowMapper} returned {@code} null)
601
+ * {@link RowMapper} returned {@code null} )
602
602
* @throws org.springframework.dao.IncorrectResultSizeDataAccessException
603
603
* if the query does not return exactly one row
604
604
* @throws DataAccessException if the query fails
@@ -617,7 +617,7 @@ <T> Stream<T> queryForStream(String sql, RowMapper<T> rowMapper, @Nullable Objec
617
617
* only the argument value but also the SQL type and optionally the scale
618
618
* @param rowMapper a callback that will map one object per row
619
619
* @return the single mapped object (may be {@code null} if the given
620
- * {@link RowMapper} returned {@code} null)
620
+ * {@link RowMapper} returned {@code null} )
621
621
* @throws org.springframework.dao.IncorrectResultSizeDataAccessException
622
622
* if the query does not return exactly one row
623
623
* @throws DataAccessException if the query fails
@@ -637,7 +637,7 @@ <T> Stream<T> queryForStream(String sql, RowMapper<T> rowMapper, @Nullable Objec
637
637
* may also contain {@link SqlParameterValue} objects which indicate not
638
638
* only the argument value but also the SQL type and optionally the scale
639
639
* @return the single mapped object (may be {@code null} if the given
640
- * {@link RowMapper} returned {@code} null)
640
+ * {@link RowMapper} returned {@code null} )
641
641
* @throws org.springframework.dao.IncorrectResultSizeDataAccessException
642
642
* if the query does not return exactly one row
643
643
* @throws DataAccessException if the query fails
0 commit comments