Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceIfWithSwitchIntention
/
after.java.template
blob: ed928a5b1319112fa02476455fc1728d2738b9a3 [
file
] [
log
] [
blame
]
public
class
X
{
int
f
(
int
a
)
{
switch
(
a
)
{
case
0
:
return
1
;
case
9
:
return
8
;
default
:
return
2
;
}
}
}