diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2018-03-10 00:02:35 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2018-03-10 19:41:23 +0100 |
commit | cc8dfe79a99f9c4105dce549d44ebef94141fe7a (patch) | |
tree | 608f94dab31b9691ac8298db713c44524990f2da | |
parent | f0ab2d07b8a68165cd494ce5d335b0cb8cfc9a76 (diff) | |
download | jgit-cc8dfe79a99f9c4105dce549d44ebef94141fe7a.tar.gz jgit-cc8dfe79a99f9c4105dce549d44ebef94141fe7a.zip |
Remove deprecated LockFile(File, FS) constructor
Use org.eclipse.jgit.internal.storage.file.LockFile#LockFile(File)
instead.
Change-Id: I107d9879c02a2006799a238ccaddf87c89f33f77
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/LockFile.java | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/LockFile.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/LockFile.java index bc23dcce27..80d67cf6af 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/LockFile.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/LockFile.java @@ -136,24 +136,6 @@ public class LockFile { * * @param f * the file that will be locked. - * @param fs - * the file system abstraction which will be necessary to perform - * certain file system operations. - * @deprecated use - * {@link org.eclipse.jgit.internal.storage.file.LockFile#LockFile(File)} - * instead - */ - @Deprecated - public LockFile(final File f, final FS fs) { - ref = f; - lck = getLockFile(ref); - } - - /** - * Create a new lock for any file. - * - * @param f - * the file that will be locked. */ public LockFile(final File f) { ref = f; |