diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2015-11-10 00:50:55 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2015-11-10 00:50:55 +0100 |
commit | b37d77997ca13fb21aa281cdddae59a14892de5d (patch) | |
tree | d6de13dea534d5229f7ddc46dcd6e917cc332513 /org.eclipse.jgit | |
parent | deb853cb691caf55affe1e4fbfad29b670591140 (diff) | |
download | jgit-b37d77997ca13fb21aa281cdddae59a14892de5d.tar.gz jgit-b37d77997ca13fb21aa281cdddae59a14892de5d.zip |
Add missing javadoc to bitmap index classes
Change-Id: Ib9fd230c9465a719df53cfcb314d8b5015743928
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java | 6 | ||||
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java index 2c4af70680..b27bcc4258 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/file/BitmapIndexImpl.java @@ -327,6 +327,12 @@ public class BitmapIndexImpl implements BitmapIndex { final EWAHCompressedBitmap bitmap; final BitmapIndexImpl bitmapIndex; + /** + * Construct compressed bitmap for given bitmap and bitmap index + * + * @param bitmap + * @param bitmapIndex + */ public CompressedBitmap(EWAHCompressedBitmap bitmap, BitmapIndexImpl bitmapIndex) { this.bitmap = bitmap; this.bitmapIndex = bitmapIndex; 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 037d3fd2a9..9ddff25480 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/BitmapIndex.java @@ -206,7 +206,9 @@ public interface BitmapIndex { int cardinality(); /** - * The BitmapIndex for this BitmapBuilder. + * Get the BitmapIndex for this BitmapBuilder. + * + * @return the BitmapIndex for this BitmapBuilder * * @since 4.2 */ |