Polishing

This commit is contained in:
Sam Brannen
2025-10-11 15:18:14 +02:00
parent 5096db4e60
commit 51d6e8beb0
3 changed files with 19 additions and 25 deletions
@@ -138,8 +138,8 @@ public class CandidateComponentsIndex {
List<Entry> candidates = this.index.get(stereotype);
if (candidates != null) {
return candidates.stream()
.filter(t -> t.match(basePackage))
.map(t -> t.type)
.filter(entry -> entry.match(basePackage))
.map(entry -> entry.type)
.collect(Collectors.toSet());
}
return Collections.emptySet();