Convert AndFileFilter Constructor to Use Varargs
------------------------------------------------
Key: IO-229
URL: https://issues.apache.org/jira/browse/IO-229
Project: Commons IO
Issue Type: Improvement
Components: Filters
Affects Versions: 2.0
Environment: Java 1.5+
Reporter: Michael Wooten
Priority: Minor
Fix For: 2.0
I suggest converting the AndFileFilter(IOFileFilter filter1, IOFileFilter
filter2) constructor to use varargs and instead have the signature
AndFileFilter(IOFileFilter... filters). The benefit is that new AndFileFilters
could be created without having to create a list or limit the initial number of
filters to two.
Ex:
IOFileFilter hiddenNonEmptyTextFileFilter = new
AndFileFilter(HiddenFileFilter.HIDDEN, EmptyFileFilter.NOT_EMPTY, new
SuffixFileFilter(".txt"));
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.