mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 4a9f84d48d5fea93696262df333f6964c89cf757
9 lines
177 B
Java
9 lines
177 B
Java
public class Test {
|
|
void f1(String p) {
|
|
String r = <selection>p.toLowerCase()</selection>;
|
|
}
|
|
|
|
void f2(String p) {
|
|
String r = p.toLowerCase();
|
|
}
|
|
} |