Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2012-03-01 21:45:36 +0000
committerJohn Arthorne2012-03-01 21:45:36 +0000
commitceb61864e3af2744d9ede386a87617a3899df393 (patch)
tree17ea002e41213f16fd18929ddc201d4eb8055566
parenta927f26f8308300acb803be667733da7795c3fe1 (diff)
downloadrt.equinox.p2-ceb61864e3af2744d9ede386a87617a3899df393.tar.gz
rt.equinox.p2-ceb61864e3af2744d9ede386a87617a3899df393.tar.xz
rt.equinox.p2-ceb61864e3af2744d9ede386a87617a3899df393.zip
Bug 373021 - Errant break in ProfileSynchronizerv20120301-2145
-rw-r--r--bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/ProfileSynchronizer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/ProfileSynchronizer.java b/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/ProfileSynchronizer.java
index cb539219b..001684fd9 100644
--- a/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/ProfileSynchronizer.java
+++ b/bundles/org.eclipse.equinox.p2.reconciler.dropins/src/org/eclipse/equinox/internal/p2/reconciler/dropins/ProfileSynchronizer.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2011 IBM Corporation and others. All rights reserved.
+ * Copyright (c) 2007, 2012 IBM Corporation and others. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
@@ -565,7 +565,7 @@ public class ProfileSynchronizer {
// (and more expensive) way to find this out is to do an IU profile property query.
if (one != null && two != null && !one.equals(two)) {
toMove.add(iu);
- break;
+ continue;
}
}
// even though we are adding all IUs below, we need to explicitly set the properties for

Back to the top