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