Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDJ Houghton2010-10-26 15:38:21 +0000
committerDJ Houghton2010-10-26 15:38:21 +0000
commit3859e53559d0278dd6a2bb60188c5dc8a5149a7e (patch)
tree091c8ae4bb23369133e6d220e2c05c3245c2fa9b /bundles/org.eclipse.equinox.p2.tests.verifier
parent7aab03dfe6ceb68f1cf3af287e3b78c44f9f8861 (diff)
downloadrt.equinox.p2-3859e53559d0278dd6a2bb60188c5dc8a5149a7e.tar.gz
rt.equinox.p2-3859e53559d0278dd6a2bb60188c5dc8a5149a7e.tar.xz
rt.equinox.p2-3859e53559d0278dd6a2bb60188c5dc8a5149a7e.zip
Bug 328712 - Remove new error in p2 testsv20101026-1730
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests.verifier')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests.verifier/src/org/eclipse/equinox/internal/p2/tests/verifier/VerifierApplication.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests.verifier/src/org/eclipse/equinox/internal/p2/tests/verifier/VerifierApplication.java b/bundles/org.eclipse.equinox.p2.tests.verifier/src/org/eclipse/equinox/internal/p2/tests/verifier/VerifierApplication.java
index 4d6dee3a4..fd9029c8d 100644
--- a/bundles/org.eclipse.equinox.p2.tests.verifier/src/org/eclipse/equinox/internal/p2/tests/verifier/VerifierApplication.java
+++ b/bundles/org.eclipse.equinox.p2.tests.verifier/src/org/eclipse/equinox/internal/p2/tests/verifier/VerifierApplication.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009 IBM Corporation and others.
+ * Copyright (c) 2009, 2010 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
@@ -213,8 +213,7 @@ public class VerifierApplication implements IApplication {
// found some bundles with missing leaf constraints; log them first
if (missing.size() > 0) {
- int rootIndex = 0;
- for (Iterator iter = missing.keySet().iterator(); iter.hasNext(); rootIndex++) {
+ for (Iterator iter = missing.keySet().iterator(); iter.hasNext();) {
BundleDescription description = (BundleDescription) iter.next();
String generalMessage = NLS.bind(EclipseAdaptorMsg.ECLIPSE_STARTUP_ERROR_BUNDLE_NOT_RESOLVED, description.getLocation());
ArrayList constraints = (ArrayList) missing.get(description);

Back to the top