Jason was investigating a bug in a bitmask. It should have been set to 0b11, but someone had set it to just plain decimal 11. The line responsible looked like this: byte number = (byte) 11; This code takes the decimal number 11, casts it to a byte, and stores it in a byte, leaving […]