Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2008-12-12 21:10:05 +0000
committerJohn Arthorne2008-12-12 21:10:05 +0000
commit6ff16b979c97a216a544c5e463ad7a792d6a1fa0 (patch)
tree6524f61f98847a881e6bd7ef351b203705b1da5e /bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/FeaturePatchTest.java
parent8a7ece8d37be77925225e3b43d489defed811071 (diff)
downloadrt.equinox.p2-6ff16b979c97a216a544c5e463ad7a792d6a1fa0.tar.gz
rt.equinox.p2-6ff16b979c97a216a544c5e463ad7a792d6a1fa0.tar.xz
rt.equinox.p2-6ff16b979c97a216a544c5e463ad7a792d6a1fa0.zip
fixed dead code compiler warnings
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/FeaturePatchTest.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/FeaturePatchTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/FeaturePatchTest.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/FeaturePatchTest.java
index 39c3041a8..75ac67951 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/FeaturePatchTest.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/reconciler/dropins/FeaturePatchTest.java
@@ -40,7 +40,7 @@ public class FeaturePatchTest extends AbstractReconcilerTest {
*/
public void testPatchingDroppedInFeature() {
// TODO enable once we fix being able to patch a feature from the drop-ins
- if (true)
+ if (DISABLED)
return;
assertInitialized();
// copy the feature into the dropins folder
@@ -78,7 +78,7 @@ public class FeaturePatchTest extends AbstractReconcilerTest {
*/
public void testAddBundle() {
// TODO enable this test when bug 240370 is fixed.
- if (true)
+ if (DISABLED)
return;
assertInitialized();
File file = getTestData("1.0", "testData/reconciler/features/myFeature_1.0.0");

Back to the top