From 1e84404793c9b542985838ae64ec662153bf3a25 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 27 Oct 2009 22:57:32 +0300 Subject: [PATCH] fix memory leak with delayed tasks (part of IDEA-25264) --- plugins/git4idea/src/git4idea/actions/GitRepositoryAction.java | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/git4idea/src/git4idea/actions/GitRepositoryAction.java b/plugins/git4idea/src/git4idea/actions/GitRepositoryAction.java index 17ef688893..9555beaed4 100644 --- a/plugins/git4idea/src/git4idea/actions/GitRepositoryAction.java +++ b/plugins/git4idea/src/git4idea/actions/GitRepositoryAction.java @@ -106,6 +106,7 @@ public abstract class GitRepositoryAction extends AnAction { } } }, null); + myDelayedTasks.clear(); vcs.showErrors(exceptions, actionName); } -- 2.11.4.GIT