Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
SimplifyIfElseIntention
/
before.java.template
blob: c23f513964174a0a52a6669d6d0f90f760ee9d7d [
file
]
public
class
X
{
boolean
f
(
boolean
a
)
{
<spot>
if
</
spot
>
(
a
)
{
return
true
;
}
return
false
;
}
}