Commit 7f35f8a9 authored by Phillip Webb's avatar Phillip Webb

Fix ConfigurationPropertyName.equals

Fix a regression in `ConfigurationPropertyName.equals` that was causing
incorrect results.

Closes gh-14665
parent aa6a58d2
......@@ -348,7 +348,7 @@ public final class ConfigurationPropertyName
}
while (i2 < l2) {
char ch2 = e2.charAt(i, i2++);
if (indexed2 || !ElementsParser.isAlphaNumeric(ch2)) {
if (indexed2 || ElementsParser.isAlphaNumeric(ch2)) {
return false;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment