Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Wolf2020-05-04 07:30:24 +0000
committerThomas Wolf2020-05-04 07:30:24 +0000
commit9f07528ff88e33d4ffef4ff6e7753f9fb655ef3b (patch)
tree0680070f6fffd16ebbcdbe88b46e7f456c3356d5
parent3a7e4eaecd8c07f12748eb07afc864a71a5ad887 (diff)
downloadjgit-9f07528ff88e33d4ffef4ff6e7753f9fb655ef3b.tar.gz
jgit-9f07528ff88e33d4ffef4ff6e7753f9fb655ef3b.tar.xz
jgit-9f07528ff88e33d4ffef4ff6e7753f9fb655ef3b.zip
Add missing @since to new API
Change-Id: Ie7c3481aba515d9c9b0a152db17b5a9dc74e7ede Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedObjectReachabilityChecker.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedObjectReachabilityChecker.java b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedObjectReachabilityChecker.java
index 98c22685cd..3701dc36f7 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedObjectReachabilityChecker.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedObjectReachabilityChecker.java
@@ -25,6 +25,8 @@ import org.eclipse.jgit.lib.BitmapIndex.BitmapBuilder;
/**
* Checks if all objects are reachable from certain starting points using
* bitmaps.
+ *
+ * @since 5.8
*/
public class BitmappedObjectReachabilityChecker
implements ObjectReachabilityChecker {

Back to the top