remove super.dispose call

This commit is contained in:
meganrogge
2022-02-22 17:40:37 -06:00
parent b3d9104136
commit 8df23582d2
@@ -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();
}
}