commit | 32638a06dfe717fd133c5de9bcaa31204632796c | [log] [tgz] |
---|---|---|
author | Jack He <siyuanh@google.com> | Wed Oct 11 11:37:08 2017 -0700 |
committer | Jack He <siyuanh@google.com> | Wed Oct 11 18:04:44 2017 -0700 |
tree | 55fca35d02fe832762794df3c78cb972003635ff | |
parent | 32a94e2fdbaa66fb26bd0be2425b55151b5e493b [diff] |
[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