We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The referenced statements are redundantly wrapped in parenthesis' (()).
()
require((_tokenId < rangeStart) || (_tokenId >= rangeStart + range.length), EXCHANGE_ID_IN_RESERVED_RANGE);
We advise them to be safely omitted, increasing the legibility of the codebase.
The text was updated successfully, but these errors were encountered:
fix #733
81ef1e4
Remediate [BVR-02C, EHF-02C, PHF-02C] Redundant Parenthesis Statement (…
827a2a0
…#750) * fix #733 * fix #735 * Fix #739 --------- Co-authored-by: Ludovic Levalleux <levalleux_ludo@hotmail.com>
zajck
Successfully merging a pull request may close this issue.
BVR-02C: Redundant Parenthesis Statements
Description:
The referenced statements are redundantly wrapped in parenthesis' (
()
).Example:
Recommendation:
We advise them to be safely omitted, increasing the legibility of the codebase.
The text was updated successfully, but these errors were encountered: