From d1bc809ccec210b82b0795fa9a7a0f988e330d81 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Mon, 24 Oct 2016 16:05:24 +0200 Subject: [PATCH] Add missing @since tag for new protected field in ObjectReader Change-Id: I93d67d7fd2fde55be39480944d9d7072dbb6c600 Signed-off-by: Matthias Sohn --- org.eclipse.jgit/src/org/eclipse/jgit/lib/ObjectReader.java | 5 +++-- 1 file 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 263fc9974..372da9893 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;