mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-23 06:29:10 +00:00
Use the diamond syntax
Closes gh-1450
This commit is contained in:
@@ -45,7 +45,7 @@ public class CompositeFilter implements Filter {
|
||||
|
||||
|
||||
public void setFilters(List<? extends Filter> filters) {
|
||||
this.filters = new ArrayList<Filter>(filters);
|
||||
this.filters = new ArrayList<>(filters);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user