Merge "Fix a bug in bitwise logic" into ub-launcher3-qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
58ba7c10ec
@@ -7,7 +7,7 @@ public interface FlagOp {
|
||||
int apply(int flags);
|
||||
|
||||
static FlagOp addFlag(int flag) {
|
||||
return i -> i + flag;
|
||||
return i -> i | flag;
|
||||
}
|
||||
|
||||
static FlagOp removeFlag(int flag) {
|
||||
|
||||
Reference in New Issue
Block a user