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