No effective change, fix typo in DatabasePlatform variable name

This commit is contained in:
Rob Bygrave
2022-08-23 16:09:45 +12:00
parent cec7492c10
commit c297ebda5a
@@ -670,8 +670,8 @@ public class DatabasePlatform {
}
private boolean isQuote(char ch) {
for (char identifer : QUOTED_IDENTIFIERS) {
if (identifer == ch) {
for (char identifier : QUOTED_IDENTIFIERS) {
if (identifier == ch) {
return true;
}
}