mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
8 lines
179 B
Java
8 lines
179 B
Java
// "Unwrap 'if' statement" "true"
|
|
class X {
|
|
void f(Object pVal, Object n) {
|
|
if (!pVal.equals(n))
|
|
pVal = null;
|
|
else <caret>pVal = n;
|
|
}
|
|
} |