Browse Source

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>
stable-5.5
Ivan Frade 5 years ago committed by Matthias Sohn
parent
commit
8216929618
  1. 2
      org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedReachabilityChecker.java
  2. 2
      org.eclipse.jgit/src/org/eclipse/jgit/revwalk/PedestrianReachabilityChecker.java
  3. 2
      org.eclipse.jgit/src/org/eclipse/jgit/revwalk/ReachabilityChecker.java

2
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. * Checks the reachability using bitmaps.
* *
* @since 5.5 * @since 5.4
*/ */
public class BitmappedReachabilityChecker implements ReachabilityChecker { public class BitmappedReachabilityChecker implements ReachabilityChecker {

2
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 * Checks the reachability walking the graph from the starters towards the
* target. * target.
* *
* @since 5.5 * @since 5.4
*/ */
public class PedestrianReachabilityChecker implements ReachabilityChecker { public class PedestrianReachabilityChecker implements ReachabilityChecker {

2
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 * Note that this checks the reachability of commits (and tags). Trees, blobs or
* any other object will cause IncorrectObjectTypeException exceptions. * any other object will cause IncorrectObjectTypeException exceptions.
* *
* @since 5.5 * @since 5.4
*/ */
public interface ReachabilityChecker { public interface ReachabilityChecker {

Loading…
Cancel
Save