mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
ExcessiveRangeCheck.html: typos (IDEA-CR-42349)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
Reports condition chains where value range is checked which could be simplified to single check. E.g. <b>x > 2 && x < 4</b> could be
|
||||
Reports condition chains where a value range is checked which could be simplified to a single check. E.g. <b>x > 2 && x < 4</b> could be
|
||||
simplified to <b>x == 3</b> or <b>arr.length == 0 || arr.length > 1</b> could be simplified to <b>arr.length != 1</b>.
|
||||
<!-- tooltip end -->
|
||||
<p><small>New in 2019.1</small></p>
|
||||
|
||||
Reference in New Issue
Block a user