diff options
author | Ivan Frade <ifrade@google.com> | 2019-05-20 16:46:47 -0700 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2019-05-22 17:37:12 +0200 |
commit | 82169296184acdbb8e9ce588f34e8c083dd4c4c1 (patch) | |
tree | 61483d9d00614acf3276492d52fc358157764aa9 /org.eclipse.jgit | |
parent | c33c0bd1b528b6c33047480b521251ecedfe6b06 (diff) | |
download | jgit-82169296184acdbb8e9ce588f34e8c083dd4c4c1.tar.gz jgit-82169296184acdbb8e9ce588f34e8c083dd4c4c1.zip |
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>
Diffstat (limited to 'org.eclipse.jgit')
3 files changed, 3 insertions, 3 deletions
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 e4d28458a8..ab453433d8 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 @@ import org.eclipse.jgit.lib.NullProgressMonitor; /** * 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 2704b69cb0..4012a45d3c 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 @@ import org.eclipse.jgit.errors.MissingObjectException; * 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 cf5f4a28cf..2ed06d1769 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 @@ import org.eclipse.jgit.errors.MissingObjectException; * 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 { |