Skip to content

Commit 64337e9

Browse files
committed
refactor(excubiae): remove _setGate() internal method
re n
1 parent 1b95984 commit 64337e9

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/excubiae/contracts/Excubia.sol

-6
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,6 @@ abstract contract Excubia is IExcubia, Ownable(msg.sender) {
2626
if (_gate == address(0)) revert ZeroAddress();
2727
if (gate != address(0)) revert GateAlreadySet();
2828

29-
_setGate(_gate);
30-
}
31-
32-
/// @dev Internal method to directly set the gate address.
33-
/// @param _gate The address of the contract to be set as the gate.
34-
function _setGate(address _gate) internal virtual {
3529
gate = _gate;
3630
}
3731

0 commit comments

Comments
 (0)