From cc9f0f17afc548e2b7501e4dfc0f2bf4ba0db55f Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 30 Jun 2017 14:20:52 -0700 Subject: Remove constructor --- src/contract_wrappers/proxy_wrapper.ts | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/contract_wrappers/proxy_wrapper.ts b/src/contract_wrappers/proxy_wrapper.ts index b941f742e..d3180df37 100644 --- a/src/contract_wrappers/proxy_wrapper.ts +++ b/src/contract_wrappers/proxy_wrapper.ts @@ -9,9 +9,6 @@ import {ProxyContract} from '../types'; */ export class ProxyWrapper extends ContractWrapper { private _proxyContractIfExists?: ProxyContract; - constructor(web3Wrapper: Web3Wrapper) { - super(web3Wrapper); - } public invalidateContractInstance(): void { delete this._proxyContractIfExists; } -- cgit