Skip to content

Commit

Permalink
remove override
Browse files Browse the repository at this point in the history
  • Loading branch information
gretzke committed Nov 26, 2024
1 parent 2a4d7fa commit 272d078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PositionDescriptor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ contract PositionDescriptor is IPositionDescriptor {
}

/// @inheritdoc IPositionDescriptor
function flipRatio(address currency0, address currency1) public view override returns (bool) {
function flipRatio(address currency0, address currency1) public view returns (bool) {
return currencyRatioPriority(currency0) > currencyRatioPriority(currency1);
}

Expand Down

0 comments on commit 272d078

Please sign in to comment.