Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
afterSCR2542.java
blob: 17bec6b8b3323b61c7b65af3cb30323e8f4ad7ee [
file
]
// "Invert If Condition" "true"
// else on the same line
class
TestInvertIf
{
void
invertIf
(
Object
object
)
{
if
(
object
!=
"adf"
)
{
System
.
out
.
println
(
"1"
);
}
// comment
else
{
System
.
out
.
println
(
"2"
);
}
}
}