Merge branch '3.1.x'

Closes gh-38499
This commit is contained in:
Andy Wilkinson
2023-11-22 12:35:58 +00:00

View File

@@ -493,7 +493,7 @@ public final class ConfigurationPropertyName implements Comparable<Configuration
}
int length = elements.getLength(element);
do {
char c = Character.toLowerCase(elements.charAt(element, index++));
char c = elements.charAt(element, index++);
if (c != '-') {
return false;
}