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