Polishing.

Original pull request #1895
This commit is contained in:
Jens Schauder
2024-09-24 09:08:23 +02:00
parent dc2e14ce81
commit 2a273ccb00

View File

@@ -227,6 +227,6 @@ public class OutboundRow implements Map<SqlIdentifier, Parameter>, Cloneable {
}
private static Object convertKeyIfNecessary(Object key) {
return key instanceof String string ? SqlIdentifier.unquoted(string) : key;
return key instanceof String keyString ? SqlIdentifier.unquoted(keyString) : key;
}
}