Loading core/java/android/net/WebAddress.java +2 −1 Original line number Diff line number Diff line Loading @@ -58,7 +58,8 @@ public class WebAddress { /* authority */ "(?:([-A-Za-z0-9$_.+!*'(),;?&=]+(?:\\:[-A-Za-z0-9$_.+!*'(),;?&=]+)?)@)?" + /* host */ "([-" + GOOD_IRI_CHAR + "%_]+(?:\\.[-" + GOOD_IRI_CHAR + "%_]+)*|\\[[0-9a-fA-F:\\.]+\\])?" + /* port */ "(?:\\:([0-9]+))?" + /* path */ "(\\/?.*)?"); /* path */ "(\\/?[^#]*)?" + /* anchor */ ".*"); /** parses given uriString. */ public WebAddress(String address) throws ParseException { Loading Loading
core/java/android/net/WebAddress.java +2 −1 Original line number Diff line number Diff line Loading @@ -58,7 +58,8 @@ public class WebAddress { /* authority */ "(?:([-A-Za-z0-9$_.+!*'(),;?&=]+(?:\\:[-A-Za-z0-9$_.+!*'(),;?&=]+)?)@)?" + /* host */ "([-" + GOOD_IRI_CHAR + "%_]+(?:\\.[-" + GOOD_IRI_CHAR + "%_]+)*|\\[[0-9a-fA-F:\\.]+\\])?" + /* port */ "(?:\\:([0-9]+))?" + /* path */ "(\\/?.*)?"); /* path */ "(\\/?[^#]*)?" + /* anchor */ ".*"); /** parses given uriString. */ public WebAddress(String address) throws ParseException { Loading