turned comments into javadocs

pull/215/head
Luca Vercelli 3 months ago
parent 4f7ac826de
commit a3d116e863

@ -788,7 +788,10 @@ public final class QrCode {
}
// Returns true iff the i'th bit of x is set to 1.
/**
* Returns true iff the i'th bit of x is set to 1.
*/
static boolean getBit(int x, int i) {
return ((x >>> i) & 1) != 0;
}

Loading…
Cancel
Save