Skip to content

Commit

Permalink
Deleted unnecessary import. (#1437)
Browse files Browse the repository at this point in the history
* Deleted unnecessary import.

* Added back SafeMath.

* Removed another unnecessary import.
  • Loading branch information
nventuro authored Oct 18, 2018
1 parent 28cf567 commit bbe804a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion contracts/crowdsale/distribution/PostDeliveryCrowdsale.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
pragma solidity ^0.4.24;

import "../validation/TimedCrowdsale.sol";
import "../../token/ERC20/IERC20.sol";
import "../../math/SafeMath.sol";

/**
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC20/SafeERC20.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pragma solidity ^0.4.24;

import "./ERC20.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";

/**
* @title SafeERC20
Expand Down

0 comments on commit bbe804a

Please sign in to comment.