Polishing.

Original pull request #1895
This commit is contained in:
Jens Schauder
2024-09-24 09:08:23 +02:00
parent c4919396af
commit 52efd6d3ad

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;
}
}