Javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1464423 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2013-04-04 10:32:42 +00:00
parent aaf08cec5c
commit 3ab8ff3717
2 changed files with 5 additions and 14 deletions

View File

@ -363,14 +363,6 @@ public class URLEncodedUtils {
private static final int RADIX = 16;
/**
* Emcode/escape a portion of a URL, to use with the query part ensure {@code plusAsBlank} is true.
*
* @param content the portion to decode
* @param charset the charset to use
* @param blankAsPlus if {@code true}, then convert space to '+' (e.g. for www-url-form-encoded content), otherwise leave as is.
* @return
*/
private static String urlencode(
final String content,
final Charset charset,
@ -404,7 +396,7 @@ public class URLEncodedUtils {
* @param content the portion to decode
* @param charset the charset to use
* @param plusAsBlank if {@code true}, then convert '+' to space (e.g. for www-url-form-encoded content), otherwise leave as is.
* @return
* @return encoded string
*/
private static String urldecode(
final String content,
@ -444,7 +436,7 @@ public class URLEncodedUtils {
*
* @param content the content to decode, will decode '+' as space
* @param charset the charset to use
* @return
* @return encoded string
*/
private static String decodeFormFields (final String content, final String charset) {
if (content == null) {
@ -458,7 +450,7 @@ public class URLEncodedUtils {
*
* @param content the content to decode, will decode '+' as space
* @param charset the charset to use
* @return
* @return encoded string
*/
private static String decodeFormFields (final String content, final Charset charset) {
if (content == null) {
@ -476,7 +468,7 @@ public class URLEncodedUtils {
*
* @param content the content to encode, will convert space to '+'
* @param charset the charset to use
* @return
* @return encoded string
*/
private static String encodeFormFields (final String content, final String charset) {
if (content == null) {
@ -495,7 +487,7 @@ public class URLEncodedUtils {
*
* @param content the content to encode, will convert space to '+'
* @param charset the charset to use
* @return
* @return encoded string
*/
private static String encodeFormFields (final String content, final Charset charset) {
if (content == null) {

View File

@ -193,7 +193,6 @@ public class RFC2965Spec extends RFC2109Spec {
* that all effective host names contain at least one dot.
*
* @param origin origin where cookie is received from or being sent to.
* @return
*/
private static CookieOrigin adjustEffectiveHost(final CookieOrigin origin) {
String host = origin.getHost();