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