Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
beforeParenthesis2.java
blob: 4aab06463a17f74d02b0f0937349471dff961345 [
file
]
// "Invert If Condition" "true"
class
Inversion
{
public
void
context
(
boolean
a
,
boolean
b
,
boolean
c
)
{
if
(
a
&<
caret
>&
b
&&
c
)
{
System
.
out
.
println
(
0
);
}
else
{
System
.
out
.
println
(
1
);
}
}
}