diff options
Diffstat (limited to 'packages/sol-resolver/src/resolvers/resolver.ts')
-rw-r--r-- | packages/sol-resolver/src/resolvers/resolver.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/packages/sol-resolver/src/resolvers/resolver.ts b/packages/sol-resolver/src/resolvers/resolver.ts deleted file mode 100644 index 7edc9a85d..000000000 --- a/packages/sol-resolver/src/resolvers/resolver.ts +++ /dev/null @@ -1,14 +0,0 @@ -import * as _ from 'lodash'; - -import { ContractSource } from '../types'; - -export abstract class Resolver { - public abstract resolveIfExists(importPath: string): ContractSource | undefined; - public resolve(importPath: string): ContractSource { - const contractSourceIfExists = this.resolveIfExists(importPath); - if (_.isUndefined(contractSourceIfExists)) { - throw new Error(`Failed to resolve ${importPath}`); - } - return contractSourceIfExists; - } -} |