ImportSelector.getExclusionFilter() naming and javadoc clarification

See gh-24175
This commit is contained in:
Juergen Hoeller
2020-02-05 18:20:27 +01:00
parent d93303c008
commit 82adb09490
3 changed files with 34 additions and 33 deletions

View File

@@ -369,7 +369,7 @@ public class ImportSelectorTests {
@Override
@Nullable
public Predicate<String> getCandidateFilter() {
public Predicate<String> getExclusionFilter() {
return className -> className.endsWith("ImportedSelector1");
}
}