diff options
author | Michael Valenta | 2004-11-24 15:26:51 +0000 |
---|---|---|
committer | Michael Valenta | 2004-11-24 15:26:51 +0000 |
commit | 328dff37db341e375c7d3f92bac33e3e8e9b67ed (patch) | |
tree | ae4cccf9cc3c47d39125e6ebe35c27d75a79e236 | |
parent | d9db5410703ec8643fbe5b6f108f8c65eb714e97 (diff) | |
download | eclipse.platform.team-328dff37db341e375c7d3f92bac33e3e8e9b67ed.tar.gz eclipse.platform.team-328dff37db341e375c7d3f92bac33e3e8e9b67ed.tar.xz eclipse.platform.team-328dff37db341e375c7d3f92bac33e3e8e9b67ed.zip |
Bug 79394 Deadlock in change sets on update
-rw-r--r-- | bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/LogEntryCacheUpdateHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/LogEntryCacheUpdateHandler.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/LogEntryCacheUpdateHandler.java index f4d844337..b25c68d05 100644 --- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/LogEntryCacheUpdateHandler.java +++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/LogEntryCacheUpdateHandler.java @@ -399,7 +399,7 @@ public class LogEntryCacheUpdateHandler extends BackgroundEventHandler { /* (non-Javadoc) * @see org.eclipse.team.internal.core.BackgroundEventHandler#queueEvent(org.eclipse.team.internal.core.BackgroundEventHandler.Event, boolean) */ - protected synchronized void queueEvent(Event event, boolean front) { + protected void queueEvent(Event event, boolean front) { // Override to snure that queues by this handler are serialized synchronized(queueLock) { Job job = getEventHandlerJob(); |