Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
afterFlow3.java
blob: 13de2fbb877bd78beeb3ff7793dcbb7ccd3b1597 [
file
]
// "Invert If Condition" "true"
class
A
{
public
void
foo
(
boolean
c
)
{
<
caret
>
if
(
c
)
{
foo
();
}
else
{
return
;
}
}
}