Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault (Ericsson)2013-04-10 01:46:06 +0000
committerPascal Rapicault2013-04-16 16:10:05 +0000
commit2a251ffa6ee938ab71f29c6d6db26bc7d7634c21 (patch)
tree6da90d4a66912449db6fabd7e85c0fcbaf5dc66f /bundles/org.eclipse.equinox.p2.tests.verifier
parenta6167da69e88b22dc13248c6a6d4efd8ee7371eb (diff)
downloadrt.equinox.p2-2a251ffa6ee938ab71f29c6d6db26bc7d7634c21.tar.gz
rt.equinox.p2-2a251ffa6ee938ab71f29c6d6db26bc7d7634c21.tar.xz
rt.equinox.p2-2a251ffa6ee938ab71f29c6d6db26bc7d7634c21.zip
Better message when doing first time migration
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.java2
1 files changed, 1 insertions, 1 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 70b8b7b49..ec07010bb 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
@@ -342,7 +342,7 @@ public class VerifierApplication implements IApplication {
IProfileRegistry reg = (IProfileRegistry) agent.getService(IProfileRegistry.SERVICE_NAME);
IProfile profile = reg.getProfile(IProfileRegistry.SELF);
- ImportFromInstallationWizard_c wizardPage = new ImportFromInstallationWizard_c(profile, new URI[0]);
+ ImportFromInstallationWizard_c wizardPage = new ImportFromInstallationWizard_c(profile, new URI[0], false);
int cancelAnswer = Integer.parseInt(properties.getProperty("checkMigration.cancelAnswer"));
wizardPage.rememberCancellationDecision(cancelAnswer);
}

Back to the top