mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 16:19:35 +07:00
3642a47796
GitOrigin-RevId: 8bd67d61335fc77c2f8e115bfda45ade06041283
9 lines
161 B
Java
9 lines
161 B
Java
// "Simplify 'b' to true" "true"
|
|
class A {
|
|
void foo(boolean b) {
|
|
if (b) {
|
|
String s = "foo" + <caret>b + "bar";
|
|
}
|
|
|
|
}
|
|
} |