We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 689bb62 commit 94eda4dCopy full SHA for 94eda4d
1 file changed
Nodejs/Product/Nodejs/Project/NodeModulesNode.cs
@@ -217,7 +217,6 @@ private void ConditionallyShowNpmOutputPane() {
217
}
218
219
#if INTEGRATE_WITH_ERROR_LIST
220
-
221
private ErrorListProvider _errorListProvider;
222
223
private ErrorListProvider GetErrorListProvider() {
@@ -351,8 +350,7 @@ private static string GetStatusBarMessage(NpmCommandCompletedEventArgs e) {
351
350
return SR.GetString(
352
e.Cancelled ? SR.NpmCancelledWithErrors : SR.NpmCompletedWithErrors,
353
e.CommandText);
354
- }
355
- if (e.Cancelled) {
+ } else if (e.Cancelled) {
356
return SR.GetString(SR.NpmCancelled, e.CommandText);
357
358
return SR.GetString(SR.NpmSuccessfullyCompleted, e.CommandText);
0 commit comments