Simplify Bitwise operations (#11547)
Motivation: We should keep bitwise operations simple and easy to understand. Modification: Simplify few Bitwise operations. Result: Less complicated bitwise operation code
This commit is contained in:
parent
ef203fa6cb
commit
ea8f6774d5
@ -38,7 +38,7 @@ public abstract class AbstractDnsOptPseudoRrRecord extends AbstractDnsRecord imp
|
||||
// See https://tools.ietf.org/html/rfc6891#section-6.1.3
|
||||
private static long packIntoLong(int val, int val2) {
|
||||
// We are currently not support DO and Z fields, just use 0.
|
||||
return ((val & 0xff) << 24 | (val2 & 0xff) << 16 | (0 & 0xff) << 8 | 0 & 0xff) & 0xFFFFFFFFL;
|
||||
return ((val & 0xffL) << 24 | (val2 & 0xff) << 16) & 0xFFFFFFFFL;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -97,7 +97,7 @@ public class DefaultDnsRecordEncoderTest {
|
||||
// Pad the leftover of the last byte with zeros.
|
||||
int idx = addressPart.writerIndex() - 1;
|
||||
byte lastByte = addressPart.getByte(idx);
|
||||
int paddingMask = ~((1 << (8 - lowOrderBitsToPreserve)) - 1);
|
||||
int paddingMask = -1 << 8 - lowOrderBitsToPreserve;
|
||||
addressPart.setByte(idx, lastByte & paddingMask);
|
||||
}
|
||||
|
||||
|
@ -168,7 +168,7 @@ public final class IpSubnetFilterRule implements IpFilterRule, Comparable<IpSubn
|
||||
*
|
||||
* Also see https://github.com/netty/netty/issues/2767
|
||||
*/
|
||||
return (int) ((-1L << 32 - cidrPrefix) & 0xffffffff);
|
||||
return (int) (-1L << 32 - cidrPrefix);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user