Default severity: warning
Detect identical if branches.
Bad
if ready { start() } else { start() }Good
if ready { start() } else { wait() }Detect identical if branches.
Default severity: warning
Detect identical if branches.
if ready { start() } else { start() }if ready { start() } else { wait() }