mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 09:36:56 +07:00
13 lines
252 B
Java
13 lines
252 B
Java
package temp;
|
|
|
|
public class Test {
|
|
public String method(
|
|
String string1,
|
|
String string2) {
|
|
<selection> if ("something".equals(string1)) {
|
|
return string2;
|
|
}
|
|
</selection> return null;
|
|
}
|
|
}
|