We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d97c30 commit 7a5f316Copy full SHA for 7a5f316
unicodetools/src/main/java/org/unicode/utilities/LinkUtilities.java
@@ -198,11 +198,11 @@ private LinkTermination(String uset) {
198
199
static final UnicodeSet EMAIL_EXCLUDES =
200
new UnicodeSet("[\\u0020 ; \\: \" ( ) \\[ \\] @ \\\\ < >]").freeze();
201
- public static final UnicodeSet validEmailLocalPart =
+ static final UnicodeSet validEmailLocalPart =
202
new UnicodeSet(
203
"[\\p{XID_Continue}\\p{block=basic_latin}-\\p{Cc}]",
204
new ParsePosition(0),
205
- VersionedSymbolTable.frozenAt(Settings.LATEST_VERSION_INFO))
+ VersionedSymbolTable.frozenAt(UNICODE_VERSION))
206
.removeAll(EMAIL_EXCLUDES)
207
.freeze();
208
public static final UnicodeProperty LinkEmail =
0 commit comments