Polishing: fix a number of compiler warnings reported by Eclipse

This commit is contained in:
Andy Wilkinson
2015-09-22 13:30:07 +01:00
parent a38f01f9e5
commit 051ebf3fac
4 changed files with 4 additions and 1 deletions

View File

@@ -179,7 +179,7 @@ public class ConfigurationMetadata {
return first + "-" + second;
}
private static <T extends Comparable> List<T> flattenValues(MultiValueMap<?, T> map) {
private static <T extends Comparable<T>> List<T> flattenValues(MultiValueMap<?, T> map) {
List<T> content = new ArrayList<T>();
for (List<T> values : map.values()) {
content.addAll(values);