summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/src/inspectionDescriptions/SimplifiableIfStatement.html
blob: 99642963522d040d336192228be59a9239b23312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
<body>
Reports if statements of the form
<b>if (<i>condition</i>) return true else return <i>foo</i></b>
or <b>if (<i>condition</i>) return false else return <i>foo</i></b>.
These expressions may be safely simplified to
<b>return <i>condition</i> && <i>foo</i></b> or
<b>return !<i>condition</i> || <i>foo</i></b>, respectively.
  <!-- tooltip end -->
<p>

</body>
</html>