aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java')
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java12
1 files changed, 10 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java
index b11b230a8f..97b5847f91 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java
@@ -159,7 +159,11 @@ public interface BitmapIndex {
@Override
BitmapBuilder xor(Bitmap other);
- /** @return the fully built immutable bitmap */
+ /**
+ * Build the bitmap
+ *
+ * @return the fully built immutable bitmap
+ */
Bitmap build();
/**
@@ -174,7 +178,11 @@ public interface BitmapIndex {
*/
boolean removeAllOrNone(PackBitmapIndex bitmapIndex);
- /** @return the number of elements in the bitmap. */
+ /**
+ * Get number of elements in the bitmap
+ *
+ * @return the number of elements in the bitmap.
+ */
int cardinality();
/**