mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
18 lines
354 B
Java
18 lines
354 B
Java
public class Test{
|
|
|
|
void test1(){
|
|
extracted();
|
|
}
|
|
|
|
private static void extracted() {
|
|
String local = "local";
|
|
System.out.println("one");
|
|
System.out.println("two");
|
|
}
|
|
|
|
void test2(){
|
|
String local = "local";
|
|
System.out.println("one");
|
|
System.out.println(local.toLowerCase());
|
|
}
|
|
} |