Remove unsued imported library "Math.sol" (#3605)

This commit is contained in:
0xAA
2022-08-10 16:39:47 +08:00
committed by GitHub
parent ec825d8999
commit 85a9bed49e
2 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,7 @@
* `ReentrancyGuard`: Reduce code size impact of the modifier by using internal functions. ([#3515](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3515)) * `ReentrancyGuard`: Reduce code size impact of the modifier by using internal functions. ([#3515](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3515))
* `SafeCast`: optimize downcasting of signed integers. ([#3565](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3565)) * `SafeCast`: optimize downcasting of signed integers. ([#3565](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3565))
* `ERC20FlashMint`: add an internal `_flashFee` function for overriding. ([#3551](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3551)) * `ERC20FlashMint`: add an internal `_flashFee` function for overriding. ([#3551](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3551))
* `VestingWallet`: remove unused library `Math.sol`. ([#3605](https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3605))
### Compatibility Note ### Compatibility Note

View File

@ -5,7 +5,6 @@ pragma solidity ^0.8.0;
import "../token/ERC20/utils/SafeERC20.sol"; import "../token/ERC20/utils/SafeERC20.sol";
import "../utils/Address.sol"; import "../utils/Address.sol";
import "../utils/Context.sol"; import "../utils/Context.sol";
import "../utils/math/Math.sol";
/** /**
* @title VestingWallet * @title VestingWallet