Skip to content

Commit

Permalink
Clean up warnings spring-test
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Jan 16, 2017
1 parent 83beb9d commit c9835f0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -940,7 +940,7 @@ private void doAddHeaderValue(String name, Object value, boolean replace) {
this.headers.put(name, header);
}
if (value instanceof Collection) {
header.addValues((Collection) value);
header.addValues((Collection<?>) value);
}
else if (value.getClass().isArray()) {
header.addValueArray(value);
Expand Down

0 comments on commit c9835f0

Please sign in to comment.