Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceConditionalWithIfIntention
/
before.java.template
blob: 0e4c822c1e6aebfee73fe16d0663ade7400dc4df [
file
] [
log
] [
blame
]
public
class
X
{
int
f
(
boolean
a
)
{
return
<spot>
a
?
0
:
1
</
spot
>;
}
}