Update merge to 10 comment

This commit is contained in:
gregw 2021-02-17 18:09:37 +01:00
parent b3bebca034
commit ea3f3a5b93
1 changed files with 3 additions and 4 deletions

View File

@ -828,10 +828,9 @@ public class HttpURI
_decodedPath = null;
_param = null;
_fragment = null;
/* TODO
* The query is not cleared here, so old values may be retained if there is no query in
* the pathQuery. This is probably a bug, but other code now expects this behaviour, so
* we will keep it in 9 and fix in 10.
/*
* The query is not cleared here and old values may be retained if there is no query in
* the pathQuery. This has been fixed in 10, but left as is here to preserve behaviour in 9.
*/
if (pathQuery != null)
parse(State.PATH, pathQuery, 0, pathQuery.length());