Skip to content

Commit cd18379

Browse files
committed
More JavaDoc warnings addressed.
1 parent c46e577 commit cd18379

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/com/github/javabdd/BitString.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,7 @@ public boolean or(BitString set) {
354354
* modified in response to the operation.
355355
*
356356
* @param set the bit set to be ORed with
357+
* @param bit set of bits
357358
* @return modified
358359
*/
359360
public boolean or_upTo(BitString set, int bit) {
@@ -625,6 +626,7 @@ public int numberOfOnes() {
625626
/**
626627
* Returns the number of ones in this <code>BitString</code> up to a given index.
627628
*
629+
* @param where given index
628630
* @return number of bits set.
629631
*/
630632
public int numberOfOnes(int where) {
@@ -700,6 +702,7 @@ public BackwardBitStringIterator backwardsIterator() {
700702
/**
701703
* Returns an iterator that iterates through the bits in backward order, starting at the given index.
702704
*
705+
* @param i given index
703706
* @return an iterator
704707
*/
705708
public BackwardBitStringIterator backwardsIterator(int i) {

0 commit comments

Comments
 (0)