Fix JavaDoc on CompositeFileListFilter

Implied that the filter would pass if *any* of its filters
did, when it actually only passes if *all* of it filters do.
This commit is contained in:
Gary Russell
2014-04-25 18:41:43 -04:00
parent 38f9cb8500
commit 47d47fb735

View File

@@ -28,11 +28,12 @@ import org.springframework.beans.factory.InitializingBean;
import org.springframework.util.Assert;
/**
* Simple {@link FileListFilter} that predicates its matches against any of many
* Simple {@link FileListFilter} that predicates its matches against <b>all</b> of the
* configured {@link FileListFilter}.
*
* @author Iwein Fuld
* @author Josh Long
* @author Gary Russell
*
* @param <F> The type that will be filtered.
*/