Skip to content

Commit

Permalink
Polishing.
Browse files Browse the repository at this point in the history
Original pull request #1895
  • Loading branch information
schauder committed Sep 24, 2024
1 parent 146e549 commit 95a9f64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,6 @@ public void forEach(BiConsumer<? super SqlIdentifier, ? super Parameter> action)
}

private static Object convertKeyIfNecessary(Object key) {
return key instanceof String string ? SqlIdentifier.unquoted(string) : key;
return key instanceof String keyString ? SqlIdentifier.unquoted(keyString) : key;
}
}

0 comments on commit 95a9f64

Please # to comment.