blob: e5a05fa6c43832c131a88d9354e1f919782b93e7 [file] [log] [blame]
package com.siyeh.ipp.conditional.withIf;
class Parentheses {
boolean method(Object x, boolean condition, boolean y) {
return !(<caret>condition ? x != null : y);
}
}