blob: 9709b24a276a1e78163a4ea1149d2622716c2565 [file] [log] [blame]
package com.siyeh.ipp.conditional.withIf;
class ConditionalInIf {
private Object value;
public boolean equals(ConditionalInIf that) {
if (value != null ? <caret>!value.equals(that.value) : that.value != null) {
return false;
}
return true;
}
}