summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/test/com/siyeh/igfixes/controlflow/simplifiable_equals_expression/Negated.java
blob: d834fb67b7e1a1e1e3638c3d82e29b55db74aac1 (plain)
1
2
3
4
5
6
class Negated {

  void check(String contentType) {
    if (contentType<caret> == null || !contentType.equalsIgnoreCase("image/jpeg")) {}
  }
}