Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceSwitchWithIfIntention
/
after.java.template
blob: b66c023c7cd86f204216922fcfe98ca5986983d8 [
file
] [
log
] [
blame
]
public
class
X
{
int
f
(
int
a
)
{
if
(
a
==
0
)
{
return
1
;
}
else
{
return
2
;
}
}
}