Remove unused imports

This commit is contained in:
Amir Bandeali 2018-08-29 14:42:42 -07:00
parent dcb12b6ad6
commit bf3ab1127d
3 changed files with 1 additions and 5 deletions

View File

@ -18,7 +18,6 @@
pragma solidity 0.4.24; pragma solidity 0.4.24;
import "../../utils/LibBytes/LibBytes.sol";
import "./MixinAuthorizable.sol"; import "./MixinAuthorizable.sol";

View File

@ -18,7 +18,6 @@
pragma solidity 0.4.24; pragma solidity 0.4.24;
import "../../utils/LibBytes/LibBytes.sol";
import "./MixinAuthorizable.sol"; import "./MixinAuthorizable.sol";

View File

@ -19,7 +19,6 @@
pragma solidity 0.4.24; pragma solidity 0.4.24;
import "../../utils/Ownable/Ownable.sol"; import "../../utils/Ownable/Ownable.sol";
import "../../utils/LibBytes/LibBytes.sol";
import "./mixins/MAssetProxyDispatcher.sol"; import "./mixins/MAssetProxyDispatcher.sol";
import "../AssetProxy/interfaces/IAssetProxy.sol"; import "../AssetProxy/interfaces/IAssetProxy.sol";
@ -28,7 +27,6 @@ contract MixinAssetProxyDispatcher is
Ownable, Ownable,
MAssetProxyDispatcher MAssetProxyDispatcher
{ {
using LibBytes for bytes;
// Mapping from Asset Proxy Id's to their respective Asset Proxy // Mapping from Asset Proxy Id's to their respective Asset Proxy
mapping (bytes4 => IAssetProxy) public assetProxies; mapping (bytes4 => IAssetProxy) public assetProxies;
@ -90,7 +88,7 @@ contract MixinAssetProxyDispatcher is
"LENGTH_GREATER_THAN_3_REQUIRED" "LENGTH_GREATER_THAN_3_REQUIRED"
); );
// Lookup assetProxy // Lookup assetProxy. We do not use `LibBytes.readBytes4` for gas efficiency reasons.
bytes4 assetProxyId; bytes4 assetProxyId;
assembly { assembly {
assetProxyId := and(mload( assetProxyId := and(mload(