Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHannes Wellmann2022-03-14 19:54:05 +0000
committerHannes Wellmann2022-03-15 21:55:59 +0000
commit23e53212405d35827302deb2913616b2a3e637eb (patch)
tree586679233c1e8e2781fe32cdf98ad54912fe63d6 /bundles/org.eclipse.equinox.p2.tests/src/org/eclipse
parentd7e1f8c0ce622c316c8f0f48f28fce364ea745dd (diff)
downloadrt.equinox.p2-master.tar.gz
rt.equinox.p2-master.tar.xz
rt.equinox.p2-master.zip
Bug 578820 - Use new FileLocator.getBundleFileLocation(Bundle)HEADI20220316-1800I20220315-1800master
Change-Id: I520d37dfdd94bef1c35c1d73063490331613314b Signed-off-by: Hannes Wellmann <wellmann.hannes1@gmx.net> Reviewed-on: https://git.eclipse.org/r/c/equinox/rt.equinox.p2/+/191925 Tested-by: Equinox Bot <equinox-bot@eclipse.org>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.tests/src/org/eclipse')
-rw-r--r--bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/generator/GeneratorTests.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/generator/GeneratorTests.java b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/generator/GeneratorTests.java
index 4cd3e61c3..e09e8bc4d 100644
--- a/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/generator/GeneratorTests.java
+++ b/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/generator/GeneratorTests.java
@@ -27,7 +27,9 @@ import org.eclipse.equinox.p2.publisher.eclipse.FeaturesAndBundlesPublisherAppli
import org.eclipse.equinox.p2.publisher.eclipse.InstallPublisherApplication;
import org.eclipse.equinox.p2.repository.artifact.IArtifactRepository;
import org.eclipse.equinox.p2.repository.metadata.IMetadataRepository;
-import org.eclipse.equinox.p2.tests.*;
+import org.eclipse.equinox.p2.tests.AbstractProvisioningTest;
+import org.eclipse.equinox.p2.tests.StringBufferStream;
+import org.eclipse.equinox.p2.tests.TestActivator;
import org.eclipse.osgi.util.NLS;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
@@ -90,7 +92,7 @@ public class GeneratorTests extends AbstractProvisioningTest {
for (int i = 0; i < limit; i++) {
BundleContext context = TestActivator.getContext();
Bundle bundle = context.getBundle(i);
- File bundleFile = FileLocator.getBundleFile(bundle);
+ File bundleFile = FileLocator.getBundleFileLocation(bundle).get();
if (!bundleFile.isFile()) {
//only jars please
++limit;

Back to the top