Skip to content

Commit

Permalink
Remove unnecessary override keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunchel committed Nov 14, 2023
1 parent cdd56e6 commit 3f523f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/PoolManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ contract PoolManager is IPoolManager, Fees, NoDelegateCall, ERC1155, IERC1155Rec
using FeeLibrary for uint24;

/// @inheritdoc IPoolManager
int24 public constant override MAX_TICK_SPACING = TickMath.MAX_TICK_SPACING;
int24 public constant MAX_TICK_SPACING = TickMath.MAX_TICK_SPACING;

/// @inheritdoc IPoolManager
int24 public constant override MIN_TICK_SPACING = TickMath.MIN_TICK_SPACING;
int24 public constant MIN_TICK_SPACING = TickMath.MIN_TICK_SPACING;

/// @inheritdoc IPoolManager
IPoolManager.LockData public override lockData;
Expand Down

0 comments on commit 3f523f3

Please sign in to comment.