Remove deprecated FileTreeIterator(WorkingTreeIterator, File, FS)

Use FileTreeIterator#FileTreeIterator(FileTreeIterator, File, FS)
instead.

Change-Id: I675e14863a1a387e7da9fc5148feffaf55d4ad39
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2018-03-10 00:44:11 +01:00
parent 39a1b4d325
commit 4772569036
1 changed files with 0 additions and 21 deletions

View File

@ -159,27 +159,6 @@ public FileTreeIterator(final File root, FS fs, WorkingTreeOptions options,
init(entries());
}
/**
* Create a new iterator to traverse a subdirectory.
*
* @param p
* the parent iterator we were created from.
* @param root
* the subdirectory. This should be a directory contained within
* the parent directory.
* @param fs
* the file system abstraction which will be necessary to perform
* certain file system operations.
* @since 4.3
* @deprecated use {@link #FileTreeIterator(FileTreeIterator, File, FS)}
* instead.
*/
@Deprecated
protected FileTreeIterator(final WorkingTreeIterator p, final File root,
FS fs) {
this(p, root, fs, DefaultFileModeStrategy.INSTANCE);
}
/**
* Create a new iterator to traverse a subdirectory.
*