Skip to content

Commit 3015575

Browse files
committed
rebase
1 parent 376724f commit 3015575

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

apps/modeler-plugin/src/main.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { env, ExtensionContext, Uri, window } from "vscode";
1+
import { env, ExtensionContext, Uri, window, workspace } from "vscode";
22

33
import { setContext } from "./infrastructure/extensionContext";
44

@@ -103,14 +103,14 @@ export function activate(context: ExtensionContext): void {
103103
// 4. Controllers
104104
const commandController = new CommandController(editorStore, vsDocument, vsUI, bpmnService);
105105
new BpmnEditorController(
106-
editorStore,
107-
bpmnService,
106+
editorStore,
107+
bpmnService,
108108
artifactSvc,
109109
scriptTaskSvc,
110-
vsUI,
111-
vsDocument,
112-
statusBar
113-
).register(context,);
110+
vsUI,
111+
vsDocument,
112+
statusBar,
113+
).register(context);
114114
new DmnEditorController(editorStore, dmnService, vsUI).register(context);
115115
commandController.register(context);
116116
new DeploymentController(editorStore, vsDocument, deploymentSvc, startInstanceSvc, vsUI).register(context);

0 commit comments

Comments
 (0)