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

  boolean a(Object a) {
    return a ==<caret> null;
  }
}