Sign in
android
/
platform
/
tools
/
idea
/
c6218e46d5d2017e987ecdbd99b318a95c42abc0
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceSwitchWithIfIntention
/
before.java.template
blob: c6438b42a2b2f5e6a531dda4e7fa13a11bb392ff [
file
] [
log
] [
blame
]
public
class
X
{
int
f
(
int
a
)
{
<spot>
switch
</
spot
>
(
a
)
{
case
0
:
return
1
;
default
:
return
2
;
}
}
}