Delete now unused webview.state

This commit is contained in:
Matt Bierner
2018-04-05 20:22:20 -07:00
parent 6c139ab333
commit 75ecc5ef29

View File

@@ -22,7 +22,6 @@ export class ExtHostWebview implements vscode.Webview {
private _isDisposed: boolean = false;
private _viewColumn: vscode.ViewColumn;
private _active: boolean;
private _state: any;
public readonly onMessageEmitter = new Emitter<any>();
public readonly onDidReceiveMessage: Event<any> = this.onMessageEmitter.event;
@@ -91,11 +90,6 @@ export class ExtHostWebview implements vscode.Webview {
}
}
get state(): any {
this.assertNotDisposed();
return this._state;
}
get options(): vscode.WebviewOptions {
this.assertNotDisposed();
return this._options;