mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 21:15:58 +07:00
13 lines
225 B
Java
13 lines
225 B
Java
public class Test {
|
|
{
|
|
int x = 0;
|
|
|
|
newMethod("foo".substring(x));
|
|
|
|
newMethod("bar".substring(x));
|
|
}
|
|
|
|
private void newMethod(String substring) {
|
|
System.out.println(substring);
|
|
}
|
|
} |