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