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