diff options
author | Ivan Frade <ifrade@google.com> | 2020-05-04 11:41:19 -0700 |
---|---|---|
committer | Ivan Frade <ifrade@google.com> | 2020-05-04 11:45:15 -0700 |
commit | 0a2a094feaac41966f3de22748d80d4d29a7ba30 (patch) | |
tree | 466a35c88164b5574553e322a57a1a2125bb4364 | |
parent | 9f07528ff88e33d4ffef4ff6e7753f9fb655ef3b (diff) | |
download | jgit-0a2a094feaac41966f3de22748d80d4d29a7ba30.tar.gz jgit-0a2a094feaac41966f3de22748d80d4d29a7ba30.zip |
Reduce BitmappedObjectReachabilityChecker visibility
ObjectReachabilityChecker interface is the only public API. The
implementation is instantiated by ObjectWalk and doesn't need to be
visible outside the package.
Change-Id: I5b97bb98990cded637686bdc15c9655330b7780f
Signed-off-by: Ivan Frade <ifrade@google.com>
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedObjectReachabilityChecker.java | 4 |
1 files changed, 1 insertions, 3 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 3701dc36f7..89aef7dc41 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedObjectReachabilityChecker.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/revwalk/BitmappedObjectReachabilityChecker.java @@ -25,10 +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 +class BitmappedObjectReachabilityChecker implements ObjectReachabilityChecker { private final ObjectWalk walk; |