Skip to content

Commit 51a3c50

Browse files
committed
cleanup
1 parent cb233b9 commit 51a3c50

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

contracts/token/ERC20/utils/SafeERC20.sol

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ pragma solidity ^0.8.20;
55

66
import {IERC20} from "../IERC20.sol";
77
import {IERC1363} from "../../../interfaces/IERC1363.sol";
8-
import {Address} from "../../../utils/Address.sol";
9-
import {LowLevelCall} from "../../../utils/LowLevelCall.sol";
10-
import {Memory} from "../../../utils/Memory.sol";
118

129
/**
1310
* @title SafeERC20
@@ -110,7 +107,6 @@ library SafeERC20 {
110107
if (!_safeApprove(token, spender, 0, true)) revert SafeERC20FailedOperation(address(token));
111108
if (!_safeApprove(token, spender, value, true)) revert SafeERC20FailedOperation(address(token));
112109
}
113-
Memory.setFreeMemoryPointer(ptr);
114110
}
115111

116112
/**

contracts/utils/cryptography/SignatureChecker.sol

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ pragma solidity ^0.8.24;
55

66
import {ECDSA} from "./ECDSA.sol";
77
import {IERC1271} from "../../interfaces/IERC1271.sol";
8-
import {LowLevelCall} from "../LowLevelCall.sol";
9-
import {Memory} from "../Memory.sol";
108
import {IERC7913SignatureVerifier} from "../../interfaces/IERC7913.sol";
119
import {Bytes} from "../../utils/Bytes.sol";
1210

0 commit comments

Comments
 (0)