From 35be70dfcb3f4b9dfef93a315bbff7fee658bb9e Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 23 May 2018 09:39:12 +0200 Subject: [PATCH] follow up for #50190 --- src/vs/workbench/common/notifications.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/vs/workbench/common/notifications.ts b/src/vs/workbench/common/notifications.ts index c7c853cad7c..d6640decdb5 100644 --- a/src/vs/workbench/common/notifications.ts +++ b/src/vs/workbench/common/notifications.ts @@ -314,11 +314,6 @@ export class NotificationViewItemProgress implements INotificationViewItemProgre } public worked(value: number): void { - if (this._state.worked === value) { - this._onDidChange.fire(); - return; - } - this._state.worked = value; this._state.infinite = void 0;