Sign in
chromium
/
external
/
github.com
/
google
/
error-prone
/
refs/heads/copybara-sync
/
.
/
docs
/
bugpattern
/
RedundantCondition.md
blob: 303d95fea2f11d20520c2408653d7d7e8b870ae2 [
file
] [
log
] [
blame
] [
view
] [
edit
]
If
a
boolean
is
enforced to have a certain value
in
an
if
statement
and
then
used
as
part of a condition within the block
,
it
is
redundant
.
To
fix the problem
,
replace the variable
with
`true`
in
inner statement
.