Skip to content

Commit 2ec7f6c

Browse files
committed
code format
1 parent 586c581 commit 2ec7f6c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/htmlunit/cyberneko/HTMLScanner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2453,9 +2453,9 @@ private void scanUntilEndTag(final String tagName) throws IOException {
24532453
}
24542454
if (c == '<') {
24552455
final String next = fCurrentEntity.nextContent(lengthToScan) + " ";
2456-
if (next.length() >= lengthToScan
2456+
if (next.length() >= lengthToScan
24572457
&& end.equalsIgnoreCase(next.substring(0, end.length()))
2458-
&& ('>' == next.charAt(lengthToScan - 1)
2458+
&& ('>' == next.charAt(lengthToScan - 1)
24592459
|| Character.isWhitespace(next.charAt(lengthToScan - 1)))) {
24602460
fCurrentEntity.rewind();
24612461
break;

0 commit comments

Comments
 (0)