mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-20 14:39:36 +00:00
Fix ConfigurationPropertyName.equals
Fix a regression in `ConfigurationPropertyName.equals` that was causing incorrect results. Closes gh-14665
This commit is contained in:
+1
-1
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user