GH-2705: public CTORs on AMFPFileListFilter Impls

Fixes https://github.com/spring-projects/spring-integration/issues/2705
This commit is contained in:
Gary Russell
2019-01-18 11:12:38 -05:00
parent 48ae91e3d9
commit 4ea3b1c23c
3 changed files with 15 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2017 the original author or authors.
* Copyright 2017-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -33,20 +33,20 @@ import org.springframework.integration.file.filters.FileListFilter;
*/
public class FtpSystemMarkerFilePresentFileListFilter extends AbstractMarkerFilePresentFileListFilter<FTPFile> {
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter) {
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter) {
super(filter);
}
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter, String suffix) {
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter, String suffix) {
super(filter, suffix);
}
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter,
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter,
Function<String, String> function) {
super(filter, function);
}
FtpSystemMarkerFilePresentFileListFilter(
public FtpSystemMarkerFilePresentFileListFilter(
Map<FileListFilter<FTPFile>, Function<String, String>> filtersAndFunctions) {
super(filtersAndFunctions);
}