blob: 76d471a9ee0b2285ecbfabd2c355ce5d62d0c12c [file] [log] [blame]
package com.siyeh.ipp.conditional.withIf;
class Parentheses {
boolean method(Object x, boolean condition, boolean y) {
if (condition) return !(x != null);
else return !y;
}
}