summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/equality/replace_equality_with_safe_equals/SimpleObjectComparison.java
blob: 304b06ff67a1b512b985ff215878aea298bea7d6 (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 == b<caret>;
  }
}