Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
beforeParenthesis.java
blob: 269790ebcd0be3cb264e3bfea4456cf8da1dd4aa [
file
]
// "Invert If Condition" "true"
class
A
{
public
boolean
foo
(
boolean
a
,
boolean
b
,
boolean
c
,
boolean
d
)
{
if
(!(
a
|<
caret
>|
b
)
||
c
||
d
)
return
false
;
return
true
;
}
}