mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
16 lines
262 B
Java
16 lines
262 B
Java
class C {
|
|
void foo(String s, StringBuilder b) {
|
|
newMethod(b, "repeated");
|
|
|
|
|
|
newMethod(b, "a");
|
|
|
|
b.append("d");
|
|
}
|
|
|
|
private void newMethod(StringBuilder b, String a) {
|
|
b.append(a);
|
|
b.append(a);
|
|
b.append(a);
|
|
}
|
|
} |