Reset the specified bit.
static int resetBit(int value, int bitNum) { return value & ~(1 << bitNum); }