diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2018-03-10 00:44:11 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2018-03-10 19:41:27 +0100 |
commit | 4772569036901e5aef661bd5fd31239972f090df (patch) | |
tree | 2240fd7a1cde38120af662633d90f972e087b0af /org.eclipse.jgit | |
parent | 39a1b4d325b59119686547a266ce644c73da8d15 (diff) | |
download | jgit-4772569036901e5aef661bd5fd31239972f090df.tar.gz jgit-4772569036901e5aef661bd5fd31239972f090df.zip |
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>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java index 8df764d293..0130cf97ec 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/treewalk/FileTreeIterator.java @@ -171,27 +171,6 @@ public class FileTreeIterator extends WorkingTreeIterator { * 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. - * - * @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 */ protected FileTreeIterator(final FileTreeIterator p, final File root, FS fs) { |