mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
15 lines
273 B
Java
15 lines
273 B
Java
// "Simplify boolean expression" "true"
|
|
class A {
|
|
public static void m(boolean fullSearch, boolean partialSearch) {
|
|
|
|
|
|
if (!partialSearch) {
|
|
return;
|
|
}
|
|
|
|
// comment
|
|
String str
|
|
= fullSearch ? "str1"
|
|
: "str2 " + "str3";
|
|
}
|
|
} |