File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
src/main/java/org/unicode/utilities Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 11# LinkEmail.txt
2- # Date: 2025-12-24, 02:37:15 GMT
2+ # Date: 2025-12-26, 00:32:54 GMT
33# © 2025 Unicode®, Inc.
44# Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
55# For terms of use and license, see https://www.unicode.org/terms_of_use.html
2626#
27270021 # 1.1 (!) EXCLAMATION MARK
28280023..0027 # 1.1 [5] (#..') NUMBER SIGN..APOSTROPHE
29- 002A..0039 # 1.1 [16] (*..9) ASTERISK..DIGIT NINE
29+ 002A..002B # 1.1 [2] (*..+) ASTERISK..PLUS SIGN
30+ 002D..0039 # 1.1 [13] (-..9) HYPHEN-MINUS..DIGIT NINE
3031003D # 1.1 (=) EQUALS SIGN
3132003F # 1.1 (?) QUESTION MARK
32330041..005A # 1.1 [26] (A..Z) LATIN CAPITAL LETTER A..LATIN CAPITAL LETTER Z
@@ -1331,4 +1332,4 @@ FFDA..FFDC # 1.1 [3] (ᅳ..ᅵ) HALFWIDTH HANGUL LETTER EU..HALFWIDTH HAN
133113323D000..3FC3F # 18.0 [11328] (U+3D000..U+3FC3F) SEAL CHARACTER-3D000..SEAL CHARACTER-3FC3F
13321333E0100..E01EF # 4.0 [240] (U+E0100..U+E01EF) VARIATION SELECTOR-17..VARIATION SELECTOR-256
13331334
1334- # Total code points: 162119
1335+ # Total code points: 162118
Original file line number Diff line number Diff line change 2525import java .nio .charset .StandardCharsets ;
2626import java .nio .file .Files ;
2727import java .nio .file .Path ;
28+ import java .text .ParsePosition ;
2829import java .util .Comparator ;
2930import java .util .EnumMap ;
3031import java .util .EnumSet ;
@@ -202,7 +203,10 @@ private LinkTermination(String uset) {
202203 .add ('.' )
203204 .freeze ();
204205 static final UnicodeSet validEmailLocalPart =
205- new UnicodeSet ("[\\ p{XID_Continue}-\\ p{block=basic_latin}]" )
206+ new UnicodeSet (
207+ "[\\ p{XID_Continue}-\\ p{block=basic_latin}]" ,
208+ new ParsePosition (0 ),
209+ VersionedSymbolTable .frozenAt (UNICODE_VERSION ))
206210 .addAll (EMAIL_ASCII_INCLUDES )
207211 .freeze ();
208212 public static final UnicodeProperty LinkEmail =
You can’t perform that action at this time.
0 commit comments