Fix ConfigurationPropertyName.equals

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

Closes gh-14665
This commit is contained in:
Phillip Webb 2018-10-02 13:57:28 -07:00
parent aa6a58d24c
commit 7f35f8a982
1 changed files with 1 additions and 1 deletions

View File

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