Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceIfWithConditionalIntention
/
before.java.template
blob: 8ac3bae841fc2706f2425b4a950878c25223965b [
file
]
public
class
X
{
int
f
(
boolean
a
)
{
<spot>
if
</
spot
>
(
a
)
{
return
3
;
}
return
4
;
}
}