Fixed the use of Lists with generics

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@655107 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2008-05-10 15:20:42 +00:00
parent bf5d268ceb
commit 5a96d1f218
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ public class UrlEncodedFormEntity extends StringEntity {
* @throws UnsupportedEncodingException if the encoding isn't supported
*/
public UrlEncodedFormEntity (
final List <NameValuePair> parameters,
final List <? extends NameValuePair> parameters,
final String encoding) throws UnsupportedEncodingException {
super(URLEncodedUtils.format(parameters, encoding),
encoding);
@ -67,7 +67,7 @@ public class UrlEncodedFormEntity extends StringEntity {
* @throws UnsupportedEncodingException if the default encoding isn't supported
*/
public UrlEncodedFormEntity (
final List <NameValuePair> parameters) throws UnsupportedEncodingException {
final List <? extends NameValuePair> parameters) throws UnsupportedEncodingException {
super(URLEncodedUtils.format(parameters, HTTP.DEFAULT_CONTENT_CHARSET),
HTTP.DEFAULT_CONTENT_CHARSET);
setContentType(URLEncodedUtils.CONTENT_TYPE);

View File

@ -154,7 +154,7 @@ public class URLEncodedUtils {
* @param encoding The encoding to use.
*/
public static String format (
final List <NameValuePair> parameters,
final List <? extends NameValuePair> parameters,
final String encoding) {
final StringBuilder result = new StringBuilder();
for (final NameValuePair parameter : parameters) {