From 94e9c36a9cb94dd8a6e4fba0a97faa373363a488 Mon Sep 17 00:00:00 2001 From: Vadim Geraskin Date: Wed, 5 Jun 2024 19:07:40 +0700 Subject: [PATCH] =?UTF-8?q?1449:=20Internal=20error=20=D0=BF=D1=80=D0=B8?= =?UTF-8?q?=20=D1=81=D0=BE=D1=80=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=BA=D0=B5?= =?UTF-8?q?=20=D0=BC=D0=B5=D1=82=D0=B0=D0=B4=D0=B0=D0=BD=D0=BD=D1=8B=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../v8codestyle/internal/autosort/SortService.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/bundles/com.e1c.v8codestyle.autosort/src/com/e1c/v8codestyle/internal/autosort/SortService.java b/bundles/com.e1c.v8codestyle.autosort/src/com/e1c/v8codestyle/internal/autosort/SortService.java index 14c54593..f4bea9b8 100644 --- a/bundles/com.e1c.v8codestyle.autosort/src/com/e1c/v8codestyle/internal/autosort/SortService.java +++ b/bundles/com.e1c.v8codestyle.autosort/src/com/e1c/v8codestyle/internal/autosort/SortService.java @@ -119,6 +119,20 @@ public class SortService this.configurationProvider = configurationProvider; this.workspaceOrchestrator = workspaceOrchestrator; this.modelEditingSupport = modelEditingSupport; + workspaceOrchestrator.addListener(event -> { + if (event.isProjectClosing()) + { + IProject project = event.getProject().getWorkspaceProject(); + if (project != null) + { + SortJob job = jobs.remove(project); + if (job != null) + { + job.cancel(); + } + } + } + }); } @LifecycleParticipant(phase = LifecyclePhase.RESOURCE_LOADING,