git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1354046 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-06-26 14:57:30 +00:00
parent 4efc8af634
commit 54f6fbf596
1 changed files with 5 additions and 1 deletions

View File

@ -258,7 +258,11 @@ public class URLEncodedUtils {
return result.toString();
}
/** Unreserved characters, i.e. alphanumeric, plus: _ - ! . ~ ' ( ) * */
/**
* Unreserved characters, i.e. alphanumeric, plus: {@code _ - ! . ~ ' ( ) *}
* <p>
* This list is the same as the {@code unreserved} list in <a href="http://www.ietf.org/rfc/rfc2396.txt">RFC 2396</>
*/
private static final BitSet UNRESERVED = new BitSet(256);
/** Punctuation characters: , ; : $ & + = */
private static final BitSet PUNCT = new BitSet(256);