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