summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/equality/replace_equality_with_safe_equals/NegatedObjectComparison.java
blob: 018def909d05a625861b0d2a0eed818a0a03984f (plain)
1
2
3
4
5
6
7
8
package com.siyeh.ipp.equality.replace_equality_with_safe_equals;

public class NegatedObjectComparison {

  boolean a(Object a, Object b) {
    return a !=<caret> b;
  }
}