Fix reserved set definition according to appendix A of RFC 3986

I have signed and agree to the terms of the SpringSource Individual
Contributor License Agreement.
This commit is contained in:
Radosław Józwik
2015-02-10 23:17:59 +01:00
parent 75bf9df384
commit 6d734f2340

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2014 the original author or authors.
* Copyright 2002-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -573,7 +573,7 @@ final class HierarchicalUriComponents extends UriComponents {
* @see <a href="http://www.ietf.org/rfc/rfc3986.txt">RFC 3986, appendix A</a>
*/
protected boolean isReserved(char c) {
return isGenericDelimiter(c) || isReserved(c);
return isGenericDelimiter(c) || isSubDelimiter(c);
}
/**