From cef7751d4d51e508844bdaffbb12316d0fff466a Mon Sep 17 00:00:00 2001 From: JohnGuilding Date: Wed, 24 Jul 2024 19:23:56 +0100 Subject: [PATCH] I10: Unused using-for directive --- src/handlers/SafeRecoverySubjectHandler.sol | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/handlers/SafeRecoverySubjectHandler.sol b/src/handlers/SafeRecoverySubjectHandler.sol index d6326287..ce4310ae 100644 --- a/src/handlers/SafeRecoverySubjectHandler.sol +++ b/src/handlers/SafeRecoverySubjectHandler.sol @@ -1,7 +1,6 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.25; -import { Strings } from "@openzeppelin/contracts/utils/Strings.sol"; import { IEmailRecoverySubjectHandler } from "../interfaces/IEmailRecoverySubjectHandler.sol"; import { ISafe } from "../interfaces/ISafe.sol"; import { EmailRecoveryManager } from "../EmailRecoveryManager.sol"; @@ -11,8 +10,6 @@ import { EmailRecoveryManager } from "../EmailRecoveryManager.sol"; * This is a custom subject handler that will work with Safes and defines custom validation. */ contract SafeRecoverySubjectHandler is IEmailRecoverySubjectHandler { - using Strings for uint256; - error InvalidSubjectParams(); error InvalidTemplateIndex(); error InvalidOldOwner();