Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
MakeCallChainIntoCallSequenceIntention
/
before.java.template
blob: c82eebde66ed591cd4a4ba1753ff45add138a838 [
file
] [
log
] [
blame
]
public
class
X
{
void
f
(
String
a
,
String
b
)
{
StringBuffer
buffer
=
new
StringBuffer
();
<spot>
buffer
.
append
(
a
).
append
(
b
)</
spot
>;
}
}