]> source.dussan.org Git - jgit.git/commitdiff
Delete deprecated TemporaryBuffer.LocalFile constructors 39/49339/1
authorMatthias Sohn <matthias.sohn@sap.com>
Sat, 25 Apr 2015 22:49:24 +0000 (00:49 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Wed, 3 Jun 2015 11:16:27 +0000 (13:16 +0200)
Change-Id: I5fdbf997ebcbe48e86f4c41c6b2643f47054b0c3
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/util/TemporaryBuffer.java

index 3719bf794966fe9bedffe75a90423fab89d27dec..e2738c03f93ba1b45810e22062942078cf174131 100644 (file)
@@ -381,29 +381,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.
                 *