Redundant specification of type arguments.

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1698078 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2015-08-27 04:59:37 +00:00
parent 0a774df3c6
commit 6b8214d4b7
1 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ class ResponseCachingPolicy {
private final boolean neverCache1_0ResponsesWithQueryString; private final boolean neverCache1_0ResponsesWithQueryString;
private final Log log = LogFactory.getLog(getClass()); private final Log log = LogFactory.getLog(getClass());
private static final Set<Integer> cacheableStatuses = private static final Set<Integer> cacheableStatuses =
new HashSet<Integer>(Arrays.asList(HttpStatus.SC_OK, new HashSet<>(Arrays.asList(HttpStatus.SC_OK,
HttpStatus.SC_NON_AUTHORITATIVE_INFORMATION, HttpStatus.SC_NON_AUTHORITATIVE_INFORMATION,
HttpStatus.SC_MULTIPLE_CHOICES, HttpStatus.SC_MULTIPLE_CHOICES,
HttpStatus.SC_MOVED_PERMANENTLY, HttpStatus.SC_MOVED_PERMANENTLY,
@ -87,10 +87,10 @@ class ResponseCachingPolicy {
this.sharedCache = sharedCache; this.sharedCache = sharedCache;
this.neverCache1_0ResponsesWithQueryString = neverCache1_0ResponsesWithQueryString; this.neverCache1_0ResponsesWithQueryString = neverCache1_0ResponsesWithQueryString;
if (allow303Caching) { if (allow303Caching) {
uncacheableStatuses = new HashSet<Integer>( uncacheableStatuses = new HashSet<>(
Arrays.asList(HttpStatus.SC_PARTIAL_CONTENT)); Arrays.asList(HttpStatus.SC_PARTIAL_CONTENT));
} else { } else {
uncacheableStatuses = new HashSet<Integer>(Arrays.asList( uncacheableStatuses = new HashSet<>(Arrays.asList(
HttpStatus.SC_PARTIAL_CONTENT, HttpStatus.SC_SEE_OTHER)); HttpStatus.SC_PARTIAL_CONTENT, HttpStatus.SC_SEE_OTHER));
} }
} }