diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2018-03-10 00:56:04 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2018-03-10 19:41:32 +0100 |
commit | b0e06a733b5cfa3284d9f7f190a60f055ed06f48 (patch) | |
tree | 3c243e8ec8f5d86a3ecb3601a6e01b4dd853fea4 /org.eclipse.jgit.lfs/src/org | |
parent | bfe89332a4e55bd709ec001a646ecf4dd30d8a97 (diff) | |
download | jgit-b0e06a733b5cfa3284d9f7f190a60f055ed06f48.tar.gz jgit-b0e06a733b5cfa3284d9f7f190a60f055ed06f48.zip |
Remove deprecated Lfs#Lfs(Path)
Use Lfs#Lfs(Repository) instead.
Change-Id: I7303987ed047b42fd1bac8e27ed49333080e556b
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.lfs/src/org')
-rw-r--r-- | org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Lfs.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Lfs.java b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Lfs.java index 40d83420ec..4c46bbd23a 100644 --- a/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Lfs.java +++ b/org.eclipse.jgit.lfs/src/org/eclipse/jgit/lfs/Lfs.java @@ -65,19 +65,6 @@ public class Lfs { /** * Constructor for Lfs. * - * @param root - * the path to the LFS media directory. Will be - * {@code "<repo>/.git/lfs"} - * @deprecated use {@link #Lfs(Repository)} instead. - */ - @Deprecated - public Lfs(Path root) { - this.root = root; - } - - /** - * Constructor for Lfs. - * * @param db * the associated repo * |