Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2021-03-17 10:23:52 +0000
committerLars Vogel2021-03-18 14:12:51 +0000
commitcf021dd0418cec50eb34a62854650a5d39cb696c (patch)
treecc4d15a6f2da0c94c432bccd1cc41055e8faa17a
parent83e776c73021dd0c72b3d178849addb5336b4e21 (diff)
downloadrt.equinox.p2-cf021dd0418cec50eb34a62854650a5d39cb696c.tar.gz
rt.equinox.p2-cf021dd0418cec50eb34a62854650a5d39cb696c.tar.xz
rt.equinox.p2-cf021dd0418cec50eb34a62854650a5d39cb696c.zip
Break loop early in AbsolutePlanTestI20210319-0030I20210318-2320I20210318-2100
Done with JDT Cleanup exit loop early Change-Id: I8290dcbc44fa255fd13c23df0dd4cf1207eeb0f2 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AbsolutePlanTest.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AbsolutePlanTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AbsolutePlanTest.java
index d14302449..9e5d9b322 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AbsolutePlanTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/planner/AbsolutePlanTest.java
@@ -52,6 +52,7 @@ public class AbsolutePlanTest extends AbstractProvisioningTest {
for (Operand op : ops) {
if (op instanceof InstallableUnitPropertyOperand) {
found = true;
+ break;
}
}
assertTrue(found);

Back to the top