return patterns.stream().filter(pattern -> pattern.matches(lookupPath)).collect(Collectors.toCollection(() -> new TreeSet<>(new PathPatternComparator(lookupPath)))); | return patterns.stream().filter(pattern -> pattern.matches(lookupPath)).collect(Collectors.toCollection(TreeSet::new)); | patterns.stream().filter(pattern -> pattern.matches(lookupPath)).collect(Collectors.toCollection(() -> new TreeSet<>(new PathPatternComparator(lookupPath)))) | patterns.stream().filter(pattern -> pattern.matches(lookupPath)).collect(Collectors.toCollection(TreeSet::new)) | spring-framework | a5e54788ccedbe6eef7e7d87586364fdfd67c601 | org.springframework.web.reactive.result.condition.PatternsRequestCondition | | | v0 | patterns.stream().filter(pattern -> pattern.matches(lookupPath)) |
---|
| | v0 | patterns.stream().filter(pattern -> pattern.matches(lookupPath)) |
---|
| Returns | True |