Skip to content

Commit d77595b

Browse files
committed
Merge branch '6.0.x'
2 parents 0b99872 + 1e75041 commit d77595b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

spring-r2dbc/src/main/java/org/springframework/r2dbc/core/DatabaseClient.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,7 @@ interface Builder {
164164
interface GenericExecuteSpec {
165165

166166
/**
167-
* Bind a non-{@code null} value to a parameter identified by its
168-
* {@code index}. {@code value} can be either a scalar value or {@link io.r2dbc.spi.Parameter}.
167+
* Bind a non-{@code null} value to a parameter identified by its {@code index}.
169168
* @param index zero based index to bind the parameter to
170169
* @param value either a scalar value or a {@link io.r2dbc.spi.Parameter}
171170
*/

spring-r2dbc/src/main/java/org/springframework/r2dbc/core/DefaultDatabaseClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,6 @@ public DefaultGenericExecuteSpec bindNull(int index, Class<?> type) {
284284
return new DefaultGenericExecuteSpec(byIndex, this.byName, this.sqlSupplier, this.filterFunction);
285285
}
286286

287-
@SuppressWarnings("deprecation")
288287
@Override
289288
public DefaultGenericExecuteSpec bind(String name, Object value) {
290289
assertNotPreparedOperation();

0 commit comments

Comments
 (0)