summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/equality/replace_equality_with_equals/NegatedObjectComparison_after.java
blob: 72eda7377647dd23bbc7563e0a9405bcb7f61d56 (plain)
1
2
3
4
5
6
public class NegatedObjectComparison {

  boolean a(Object a, Object b) {
    return !a.equals(b);
  }
}