From 8df23582d279413706e185d4f11e02a26eab94ae Mon Sep 17 00:00:00 2001 From: meganrogge Date: Tue, 22 Feb 2022 17:40:37 -0600 Subject: [PATCH] remove super.dispose call --- src/browser/services/DecorationService.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/browser/services/DecorationService.ts b/src/browser/services/DecorationService.ts index de90649e..04b9ec0a 100644 --- a/src/browser/services/DecorationService.ts +++ b/src/browser/services/DecorationService.ts @@ -146,8 +146,6 @@ export class Decoration extends Disposable implements IDecoration { this._container.removeChild(this._element); } this.isDisposed = true; - // Emit before super.dispose such that dispose listeners get a change to react this._onDispose.fire(); - super.dispose(); } }