Skip to content

Commit

Permalink
Remove unnecessary toLowerCase call from remainderIsDashes
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Nov 22, 2023
1 parent 74239ad commit ae5bae3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ private boolean remainderIsDashes(Elements elements, int element, int index) {
}
int length = elements.getLength(element);
do {
char c = Character.toLowerCase(elements.charAt(element, index++));
char c = elements.charAt(element, index++);
if (c != '-') {
return false;
}
Expand Down

0 comments on commit ae5bae3

Please sign in to comment.