Skip to content

Commit

Permalink
Merge pull request #501 from abellmann/issue-494-fix
Browse files Browse the repository at this point in the history
suggested fix for issue #494
  • Loading branch information
de-jcup committed Sep 16, 2024
2 parents 3d93867 + 3015ae1 commit ec91ebd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,21 @@ public ASPSupport getAspSupport() {
public void start(BundleContext context) throws Exception {
super.start(context);

cleanupTempFolder();

getAspSupport().start();
plugin = this;
cleanupTempFolder();
taskSupportProvider.getTodoTaskSupport().install();

}

public void stop(BundleContext context) throws Exception {
cleanupTempFolder();
plugin = null;
// getAspSupport().stop();
taskSupportProvider.getTodoTaskSupport().uninstall();
colorManager.dispose();

cleanupTempFolder();


super.stop(context);
}
Expand Down

0 comments on commit ec91ebd

Please sign in to comment.