Validate backup workspaces on startup

This commit is contained in:
Benjamin Pasero
2016-11-23 11:08:29 +01:00
parent 1df2964721
commit c00bf9ab3f
7 changed files with 116 additions and 93 deletions

View File

@@ -11,9 +11,6 @@ import Event, { Emitter } from 'vs/base/common/event';
export class TestLifecycleService implements ILifecycleMainService {
public _serviceBrand: any;
private _onBeforeUnload = new Emitter<IVSCodeWindow>();
onBeforeUnload: Event<IVSCodeWindow> = this._onBeforeUnload.event;
private _onBeforeQuit = new Emitter<void>();
onBeforeQuit: Event<void> = this._onBeforeQuit.event;