This commit is contained in:
M66B 2021-04-30 06:52:46 +02:00
parent 7383d0eddb
commit 980cae6ef6
1 changed files with 1 additions and 1 deletions

View File

@ -2112,7 +2112,7 @@ public class HtmlHelper {
text = block.get(i).getWholeText();
for (int j = 0; j < text.length(); j++) {
char kar = text.charAt(j);
if (kar == ' ') {
if (kar != ' ') {
blank = false;
break;
}