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