Skip to content

Commit a040bc6

Browse files
committed
Javadoc
1 parent b340827 commit a040bc6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ private WildcardFileFilter(final IOCase ioCase, final String... wildcards) {
177177
* @param wildcards the list of wildcards to match, not null
178178
* @throws IllegalArgumentException if the pattern list is null
179179
* @throws ClassCastException if the list does not contain Strings
180-
* @deprecated Use {@link #builder()}
180+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
181181
*/
182182
@Deprecated
183183
public WildcardFileFilter(final List<String> wildcards) {
@@ -191,7 +191,7 @@ public WildcardFileFilter(final List<String> wildcards) {
191191
* @param ioCase how to handle case sensitivity, null means case-sensitive
192192
* @throws IllegalArgumentException if the pattern list is null
193193
* @throws ClassCastException if the list does not contain Strings
194-
* @deprecated Use {@link #builder()}
194+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
195195
*/
196196
@Deprecated
197197
public WildcardFileFilter(final List<String> wildcards, final IOCase ioCase) {
@@ -203,7 +203,7 @@ public WildcardFileFilter(final List<String> wildcards, final IOCase ioCase) {
203203
*
204204
* @param wildcard the wildcard to match
205205
* @throws IllegalArgumentException if the pattern is null
206-
* @deprecated Use {@link #builder()}
206+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
207207
*/
208208
@Deprecated
209209
public WildcardFileFilter(final String wildcard) {
@@ -215,7 +215,7 @@ public WildcardFileFilter(final String wildcard) {
215215
*
216216
* @param wildcards the array of wildcards to match
217217
* @throws NullPointerException if the pattern array is null
218-
* @deprecated Use {@link #builder()}
218+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
219219
*/
220220
@Deprecated
221221
public WildcardFileFilter(final String... wildcards) {
@@ -228,7 +228,7 @@ public WildcardFileFilter(final String... wildcards) {
228228
* @param wildcard the wildcard to match, not null
229229
* @param ioCase how to handle case sensitivity, null means case-sensitive
230230
* @throws NullPointerException if the pattern is null
231-
* @deprecated Use {@link #builder()}
231+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
232232
*/
233233
@Deprecated
234234
public WildcardFileFilter(final String wildcard, final IOCase ioCase) {
@@ -241,7 +241,7 @@ public WildcardFileFilter(final String wildcard, final IOCase ioCase) {
241241
* @param wildcards the array of wildcards to match, not null
242242
* @param ioCase how to handle case sensitivity, null means case-sensitive
243243
* @throws NullPointerException if the pattern array is null
244-
* @deprecated Use {@link #builder()}
244+
* @deprecated Use {@link #builder()} and {@link Builder#get()}
245245
*/
246246
@Deprecated
247247
public WildcardFileFilter(final String[] wildcards, final IOCase ioCase) {

0 commit comments

Comments
 (0)