Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
redundantIf
/
assignmentFake.kt
blob: 2fa205499122e5554f05f48101b4c132b2dce2d6 [
file
] [
log
] [
blame
]
// "Remove redundant 'if' statement" "false"
// ACTION: Add braces to 'if' statement
// ACTION: Invert 'if' condition
// ACTION: Replace 'if' with 'when'
fun bar
(
p
:
Int
)
{
var
v1
=
false
var
v2
=
false
<caret>
if
(
p
>
0
)
v2
=
true
else
v1
=
false
}