blob: 733521d254fe76ab566f1558c352535d78b6a545 [file] [log] [blame]
package com.siyeh.igfixes.style.replace_with_string;
class NoConstructorArgument {
void m() {
final StringBuilder buffer<caret> = new StringBuilder();
buffer.append("appended");
buffer.append("appended");
String s = buffer.toString();
}
}