Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceIfWithSwitchIntention
/
before.java.template
blob: 4f2d2a7501b876572fe2fef9587a9f0e7286353e [
file
] [
log
] [
blame
]
public
class
X
{
int
f
(
int
a
)
{
<spot>
if
</
spot
>
(
a
==
0
)
{
return
1
;
}
else
if
(
a
==
9
)
{
return
8
;
}
else
{
return
2
;
}
}
}