File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414
1515public class Constants {
1616
17- public static final String VERSION = "2.1.0 " ;
18- public static final String BUILD = "20250122_0906 " ;
17+ public static final String VERSION = "2.1.1 " ;
18+ public static final String BUILD = "20250217_1831 " ;
1919
2020 private Constants () {
2121 // private for security
Original file line number Diff line number Diff line change @@ -88,7 +88,10 @@ private static boolean hasText(Element e) {
8888 if (text != null ) {
8989 for (int i = 0 ; i < text .length (); i ++) {
9090 char c = text .charAt (i );
91- if (!(Character .isSpaceChar (c ) || c == '\n' || c =='\r' || c == '\t' )) {
91+ if (c == '\u00A0' ) {
92+ return true ;
93+ }
94+ if (!(Character .isSpaceChar (c ) || c == '\n' || c == '\r' || c == '\t' || c == '\u00A0' )) {
9295 return true ;
9396 }
9497 }
@@ -97,5 +100,4 @@ private static boolean hasText(Element e) {
97100 }
98101 return false ;
99102 }
100-
101103}
You can’t perform that action at this time.
0 commit comments