mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
10 lines
175 B
Java
10 lines
175 B
Java
class C {
|
|
String[] vars;
|
|
int foo(C c, int i) {
|
|
return newMethod(c.vars[i]);
|
|
}
|
|
|
|
private int newMethod(String var) {
|
|
return var.length();
|
|
}
|
|
} |