MemberFinder: actually check the classes' members

This commit is contained in:
Emmanuel BENOîT 2015-09-12 14:28:12 +02:00
parent 84ee63afa8
commit b2d64ac7bf

View file

@ -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 ) {