From 88a328e8fbbd1ef4e5188b038a9823f005d3ab16 Mon Sep 17 00:00:00 2001 From: dj Date: Mon, 15 Aug 2011 10:54:12 -0400 Subject: Bug 354737 - [touchpoint eclipse] RepositoryAction doesn't decrement repo count before saving --- .../internal/p2/touchpoint/eclipse/actions/RepositoryAction.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/RepositoryAction.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/RepositoryAction.java index 8f3c4d81e..06181cecd 100644 --- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/RepositoryAction.java +++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/actions/RepositoryAction.java @@ -170,8 +170,8 @@ abstract class RepositoryAction extends ProvisioningAction { Preferences node = getRepositoryPreferenceNode(agentLocation, null, event.getRepositoryLocation(), event.getRepositoryType()); int count = getRepositoryCount(node); // modify the repository count before (potentially) removing the preference node - setRepositoryCount(node, count); - if (--count < 1 && manager != null) + setRepositoryCount(node, --count); + if (count < 1 && manager != null) manager.removeRepository(event.getRepositoryLocation()); } -- cgit v1.2.3