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

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