Skip to content

Commit

Permalink
fix: Remove unused imports from BorrowLogic
Browse files Browse the repository at this point in the history
  • Loading branch information
LHerskind committed Oct 5, 2021
1 parent 9308e97 commit 7b019c0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions contracts/protocol/libraries/logic/BorrowLogic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ import {UserConfiguration} from '../configuration/UserConfiguration.sol';
import {ReserveConfiguration} from '../configuration/ReserveConfiguration.sol';
import {Helpers} from '../helpers/Helpers.sol';
import {Errors} from '../helpers/Errors.sol';
import {WadRayMath} from '../math/WadRayMath.sol';
import {PercentageMath} from '../math/PercentageMath.sol';
import {DataTypes} from '../types/DataTypes.sol';
import {ValidationLogic} from './ValidationLogic.sol';
import {ReserveLogic} from './ReserveLogic.sol';
Expand All @@ -27,8 +25,6 @@ library BorrowLogic {
using SafeERC20 for IERC20;
using UserConfiguration for DataTypes.UserConfigurationMap;
using ReserveConfiguration for DataTypes.ReserveConfigurationMap;
using WadRayMath for uint256;
using PercentageMath for uint256;

// See `IPool` for descriptions
event Borrow(
Expand Down

0 comments on commit 7b019c0

Please sign in to comment.