mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
8 lines
140 B
Java
8 lines
140 B
Java
// "Remove 'if' statement" "true-preview"
|
|
class X {
|
|
int m(String s) {
|
|
if (s.equals("abc")) {
|
|
}
|
|
return 1;
|
|
}
|
|
} |