Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
beforeParenthesis1.java
blob: 910ff076934fa621934dd8e9ae97296531653cbd [
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
);
}
}
}