blob: 95a7e1067ae9e0f3de5b44c3c39bbc89d6cdc33a [file] [log] [blame]
public class ShiftAndMask {
void m(long longValue) {
byte b1 = (byte) ((longValue >>> 32) & 0xFF);
byte b2 = (byte) ((longValue >>> 40) & 0xFF);
}
}