Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
DemorgansIntention
/
after.java.template
blob: 4e68547c700da62348e77467dfc36abaa8629d0b [
file
] [
log
] [
blame
]
public
class
X
{
void
f
(
boolean
a
,
boolean
b
)
{
if
(!(
a
&&
b
))
return
;
}
}