diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2015-04-26 00:49:24 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2015-06-03 13:16:27 +0200 |
commit | d19ce2435d2d975bde311c138a956dd2894b6490 (patch) | |
tree | a593ee59216a3446a61398a4ab0a2a40a6827285 /org.eclipse.jgit | |
parent | f6911065471f7bb312e4863d701431813d6fdbdb (diff) | |
download | jgit-d19ce2435d2d975bde311c138a956dd2894b6490.tar.gz jgit-d19ce2435d2d975bde311c138a956dd2894b6490.zip |
Delete deprecated TemporaryBuffer.LocalFile constructors
Change-Id: I5fdbf997ebcbe48e86f4c41c6b2643f47054b0c3
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/util/TemporaryBuffer.java | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/TemporaryBuffer.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/TemporaryBuffer.java index 3719bf7949..e2738c03f9 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/util/TemporaryBuffer.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/TemporaryBuffer.java @@ -382,29 +382,6 @@ public abstract class TemporaryBuffer extends OutputStream { private File onDiskFile; /** - * Create a new temporary buffer. - * - * @deprecated Use the {@code File} overload to supply a directory. - */ - @Deprecated - public LocalFile() { - this(null, DEFAULT_IN_CORE_LIMIT); - } - - /** - * Create a new temporary buffer, limiting memory usage. - * - * @param inCoreLimit - * maximum number of bytes to store in memory. Storage beyond - * this limit will use the local file. - * @deprecated Use the {@code File,int} overload to supply a directory. - */ - @Deprecated - public LocalFile(final int inCoreLimit) { - this(null, inCoreLimit); - } - - /** * Create a new temporary buffer, limiting memory usage. * * @param directory |