Sign in
android
/
platform
/
tools
/
idea
/
b56ea2a18f232d79481e778085fd64e8ae486fc3
/
.
/
plugins
/
IntentionPowerPak
/
src
/
intentionDescriptions
/
ReplaceConcatenationWithStringBufferIntention
/
after.java.template
blob: 5c6b11913b7b34bfa4c64673571ae19a064c65c4 [
file
]
public
class
X
{
String
f
()
{
return
new
StringBuffer
().
append
(
"1"
).
append
(
"2"
).
toString
();
}
}