diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2016-10-24 16:05:24 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2016-10-24 16:05:24 +0200 |
commit | d1bc809ccec210b82b0795fa9a7a0f988e330d81 (patch) | |
tree | 40c2526abe2a94e044a6b73d9fb999850249730f | |
parent | fa0a93119cd3bc6e2673be25a89b8d7638598f3d (diff) | |
download | jgit-d1bc809ccec210b82b0795fa9a7a0f988e330d81.tar.gz jgit-d1bc809ccec210b82b0795fa9a7a0f988e330d81.zip |
Add missing @since tag for new protected field in ObjectReader
Change-Id: I93d67d7fd2fde55be39480944d9d7072dbb6c600
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectReader.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectReader.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectReader.java index 263fc99745..372da98939 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectReader.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectReader.java @@ -66,8 +66,9 @@ public abstract class ObjectReader implements AutoCloseable { public static final int OBJ_ANY = -1; /** - * The threshold at which a file will be streamed rather than - * loaded entirely into memory. + * The threshold at which a file will be streamed rather than loaded + * entirely into memory. + * @since 4.6 */ protected int streamFileThreshold; |