Do not include the fragement identifier in the path.

Bug: 2435741
This commit is contained in:
Patrick Scott
2010-02-16 16:15:55 -05:00
parent e5dbbde590
commit fa4039e4fc

View File

@@ -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 {