Skip to content

Commit e8f8c37

Browse files
committed
GH-2705: public CTORs on AMFPFileListFilter Impls
Fixes #2705
1 parent d803e75 commit e8f8c37

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

spring-integration-file/src/main/java/org/springframework/integration/file/filters/FileSystemMarkerFilePresentFileListFilter.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017 the original author or authors.
2+
* Copyright 2017-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -29,20 +29,20 @@
2929
*/
3030
public class FileSystemMarkerFilePresentFileListFilter extends AbstractMarkerFilePresentFileListFilter<File> {
3131

32-
FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter) {
32+
public FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter) {
3333
super(filter);
3434
}
3535

36-
FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter, String suffix) {
36+
public FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter, String suffix) {
3737
super(filter, suffix);
3838
}
3939

40-
FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter,
40+
public FileSystemMarkerFilePresentFileListFilter(FileListFilter<File> filter,
4141
Function<String, String> function) {
4242
super(filter, function);
4343
}
4444

45-
FileSystemMarkerFilePresentFileListFilter(
45+
public FileSystemMarkerFilePresentFileListFilter(
4646
Map<FileListFilter<File>, Function<String, String>> filtersAndFunctions) {
4747
super(filtersAndFunctions);
4848
}

spring-integration-ftp/src/main/java/org/springframework/integration/ftp/filters/FtpSystemMarkerFilePresentFileListFilter.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017 the original author or authors.
2+
* Copyright 2017-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,20 +33,20 @@
3333
*/
3434
public class FtpSystemMarkerFilePresentFileListFilter extends AbstractMarkerFilePresentFileListFilter<FTPFile> {
3535

36-
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter) {
36+
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter) {
3737
super(filter);
3838
}
3939

40-
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter, String suffix) {
40+
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter, String suffix) {
4141
super(filter, suffix);
4242
}
4343

44-
FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter,
44+
public FtpSystemMarkerFilePresentFileListFilter(FileListFilter<FTPFile> filter,
4545
Function<String, String> function) {
4646
super(filter, function);
4747
}
4848

49-
FtpSystemMarkerFilePresentFileListFilter(
49+
public FtpSystemMarkerFilePresentFileListFilter(
5050
Map<FileListFilter<FTPFile>, Function<String, String>> filtersAndFunctions) {
5151
super(filtersAndFunctions);
5252
}

spring-integration-sftp/src/main/java/org/springframework/integration/sftp/filters/SftpSystemMarkerFilePresentFileListFilter.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017 the original author or authors.
2+
* Copyright 2017-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,20 +33,20 @@
3333
*/
3434
public class SftpSystemMarkerFilePresentFileListFilter extends AbstractMarkerFilePresentFileListFilter<LsEntry> {
3535

36-
SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter) {
36+
public SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter) {
3737
super(filter);
3838
}
3939

40-
SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter, String suffix) {
40+
public SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter, String suffix) {
4141
super(filter, suffix);
4242
}
4343

44-
SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter,
44+
public SftpSystemMarkerFilePresentFileListFilter(FileListFilter<LsEntry> filter,
4545
Function<String, String> function) {
4646
super(filter, function);
4747
}
4848

49-
SftpSystemMarkerFilePresentFileListFilter(
49+
public SftpSystemMarkerFilePresentFileListFilter(
5050
Map<FileListFilter<LsEntry>, Function<String, String>> filtersAndFunctions) {
5151
super(filtersAndFunctions);
5252
}

0 commit comments

Comments
 (0)