Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
groovy
/
resources
/
intentionDescriptions
/
MergeElseIfIntention
/
after.groovy.template
blob: 7f00d7b0d318de8cb377a154ca13ba5425f5d44d [
file
] [
log
] [
blame
]
public
class
X
{
int
f
(
int
a
)
{
if
(
a
==
0
)
{
return
0
;
}
else
if
(
a
==
1
)
{
return
2
;
}
else
{
return
18
;
}
}
}