Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
afterParenthesis.java
blob: 19bb3770a235453eaa8d7690a942c859c716cc5a [
file
] [
log
] [
blame
]
// "Invert If Condition" "true"
class
A
{
public
boolean
foo
(
boolean
a
,
boolean
b
,
boolean
c
,
boolean
d
)
{
if
((
a
||
b
)
&&
!
c
&&
!
d
)
{
return
true
;
}
return
false
;
}
}