| commit | 82169296184acdbb8e9ce588f34e8c083dd4c4c1 | [log] [tgz] |
|---|---|---|
| author | Ivan Frade <ifrade@google.com> | Mon May 20 16:46:47 2019 -0700 |
| committer | Matthias Sohn <matthias.sohn@sap.com> | Wed May 22 17:37:12 2019 +0200 |
| tree | 61483d9d00614acf3276492d52fc358157764aa9 | |
| parent | c33c0bd1b528b6c33047480b521251ecedfe6b06 [diff] |
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 {