From 54facabde34a4c85ea950b03a60a6c571b19dffe Mon Sep 17 00:00:00 2001 From: Alan Ren Date: Sat, 13 Feb 2021 19:01:26 -0800 Subject: [PATCH] remove the dirty flag (#14292) --- src/sql/workbench/browser/editor/profiler/profilerInput.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/sql/workbench/browser/editor/profiler/profilerInput.ts b/src/sql/workbench/browser/editor/profiler/profilerInput.ts index 7468a65bf6..c5676d12ae 100644 --- a/src/sql/workbench/browser/editor/profiler/profilerInput.ts +++ b/src/sql/workbench/browser/editor/profiler/profilerInput.ts @@ -277,10 +277,6 @@ export class ProfilerInput extends EditorInput implements IProfilerSession { this.data.clearFilter(); } - isDirty(): boolean { - return this.state.isRunning || !!this.state.isPaused; - } - dispose() { super.dispose(); this._profilerService.disconnectSession(this.id);