Skip to content

Commit 2a273cc

Browse files
committed
Polishing.
Original pull request #1895
1 parent dc2e14c commit 2a273cc

File tree

1 file changed

+1
-1
lines changed
  • spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/mapping

1 file changed

+1
-1
lines changed

spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/mapping/OutboundRow.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,6 @@ public void forEach(BiConsumer<? super SqlIdentifier, ? super Parameter> action)
227227
}
228228

229229
private static Object convertKeyIfNecessary(Object key) {
230-
return key instanceof String string ? SqlIdentifier.unquoted(string) : key;
230+
return key instanceof String keyString ? SqlIdentifier.unquoted(keyString) : key;
231231
}
232232
}

0 commit comments

Comments
 (0)