Omniscia Steer Protocol Audit
PoolSharkMultiPositionLiquidityManager Code Style Findings
PoolSharkMultiPositionLiquidityManager Code Style Findings
PSM-01C: Redundant Parenthesis Statements
Type | Severity | Location |
---|---|---|
Code Style | PoolSharkMultiPositionLiquidityManager.sol:L57, L61 |
Description:
The referenced statements are redundantly wrapped in parenthesis' (()
).
Example:
contracts/vault-types/PoolSharkLiquidityManagers/PoolSharkMultiPositionLiquidityManager.sol
57return (_positions);
Recommendation:
We advise them to be safely omitted, increasing the legibility of the codebase.
Alleviation (6513a21a002d422e298719b22f73a4559dfd4663):
The redundant parenthesis in the referenced statements have been safely omitted.