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

public class SimpleObjectComparison {

  boolean a(Object a, Object b) {
    return a == null ? b == null : a.equals(b);
  }
}