[Script] Remove redundant conditional expressions
* a ? true : false -> a * a ? false : true -> !a * Fixed using "Redundant conditional expression" inspection in Intellij * a ? true : b -> a || b * a ? false : b -> !a && b * Fixed using "Simplifiable conditional expression" inspection in Intellij Bug: 63597465 Test: make checkbuild, no manual changes, no functional changes Change-Id: If2ef6a1188260b8c76ea99f7a922f1f1f5fe82ab
Loading
Please register or sign in to comment