ReachabilityCheckers: @since 5.4 The new ReachabilityChecker interface and its implementations are marked as @since 5.5, but they will make it to the 5.4 release. Change-Id: I88c31b3300ccf35d18c35faddb2517f0a57bdcfd Signed-off-by: Ivan Frade <ifrade@google.com>
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedReachabilityChecker.java b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedReachabilityChecker.java index e4d2845..ab45343 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedReachabilityChecker.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedReachabilityChecker.java
@@ -56,7 +56,7 @@ /** * Checks the reachability using bitmaps. * - * @since 5.5 + * @since 5.4 */ public class BitmappedReachabilityChecker implements ReachabilityChecker {
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/PedestrianReachabilityChecker.java b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/PedestrianReachabilityChecker.java index 2704b69..4012a45 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/PedestrianReachabilityChecker.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/PedestrianReachabilityChecker.java
@@ -53,7 +53,7 @@ * Checks the reachability walking the graph from the starters towards the * target. * - * @since 5.5 + * @since 5.4 */ public class PedestrianReachabilityChecker implements ReachabilityChecker {
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ReachabilityChecker.java b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ReachabilityChecker.java index cf5f4a2..2ed06d1 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ReachabilityChecker.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ReachabilityChecker.java
@@ -55,7 +55,7 @@ * Note that this checks the reachability of commits (and tags). Trees, blobs or * any other object will cause IncorrectObjectTypeException exceptions. * - * @since 5.5 + * @since 5.4 */ public interface ReachabilityChecker {