From da3183bdf32d2f05d209353088c29e4e1dbb5072 Mon Sep 17 00:00:00 2001 From: Igor Vinokur Date: Fri, 11 Jun 2021 13:36:40 +0300 Subject: [PATCH] fix formatting --- .../src/browser/plugin/che-plugin-manager.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/extensions/eclipse-che-theia-plugin-ext/src/browser/plugin/che-plugin-manager.ts b/extensions/eclipse-che-theia-plugin-ext/src/browser/plugin/che-plugin-manager.ts index f23844c9c..81634b264 100644 --- a/extensions/eclipse-che-theia-plugin-ext/src/browser/plugin/che-plugin-manager.ts +++ b/extensions/eclipse-che-theia-plugin-ext/src/browser/plugin/che-plugin-manager.ts @@ -23,12 +23,12 @@ import { inject, injectable, postConstruct } from 'inversify'; import { ChePluginFrontentService } from './che-plugin-frontend-service'; import { ChePluginPreferences } from './che-plugin-preferences'; import { ChePluginServiceClientImpl } from './che-plugin-service-client'; +import { DevfileService } from '@eclipse-che/theia-remote-api/lib/common/devfile-service'; import { EnvVariablesServer } from '@theia/core/lib/common/env-variables'; import { PluginFilter } from '../../common/plugin/plugin-filter'; import { PluginServer } from '@theia/plugin-ext/lib/common/plugin-protocol'; import URI from '@theia/core/lib/common/uri'; import { WorkspaceService } from '@eclipse-che/theia-remote-api/lib/common/workspace-service'; -import { DevfileService } from '@eclipse-che/theia-remote-api/lib/common/devfile-service'; import debounce = require('lodash.debounce'); @@ -470,9 +470,7 @@ export class ChePluginManager { // remove the plugin from workspace configuration const key = `${metadata.publisher}/${metadata.name}/${metadata.version}`; await this.chePluginService.removePlugin(key); - this.messageService.info( - `Plugin '${key}' has been successfully removed` - ); + this.messageService.info(`Plugin '${key}' has been successfully removed`); // remove the plugin from the list of workspace plugins this.installedPlugins = this.installedPlugins.filter(p => p !== metadata.key);