MemberFinder: actually check the classes' members
This commit is contained in:
parent
84ee63afa8
commit
b2d64ac7bf
1 changed files with 6 additions and 0 deletions
|
@ -311,6 +311,12 @@ public class MemberFinder< T >
|
|||
return;
|
||||
}
|
||||
|
||||
for ( T item : this.extractor.apply( target ) ) {
|
||||
if ( this.memberFilter == null || this.memberFilter.test( item ) ) {
|
||||
output.add( item );
|
||||
}
|
||||
}
|
||||
|
||||
if ( this.interfaces ) {
|
||||
checked.add( target );
|
||||
if ( !this.classesFirst ) {
|
||||
|
|
Loading…
Reference in a new issue