Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2010-12-13 16:26:56 +0000
committerJohn Arthorne2010-12-13 16:26:56 +0000
commita8147c3dca1f27c0e5ffdf2a83e90fc00d2e82cd (patch)
tree8307ef71014f275da5b794baf65e6221cc9e0aa3 /bundles
parent33f666362c2d63c8a7d96a2fba39cd9b4c2ab85e (diff)
downloadrt.equinox.p2-a8147c3dca1f27c0e5ffdf2a83e90fc00d2e82cd.tar.gz
rt.equinox.p2-a8147c3dca1f27c0e5ffdf2a83e90fc00d2e82cd.tar.xz
rt.equinox.p2-a8147c3dca1f27c0e5ffdf2a83e90fc00d2e82cd.zip
wrong activator
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/ProfileMetadataRepository.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/ProfileMetadataRepository.java b/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/ProfileMetadataRepository.java
index 3dfe7df3e..6017fc801 100644
--- a/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/ProfileMetadataRepository.java
+++ b/bundles/org.eclipse.equinox.p2.engine/src/org/eclipse/equinox/internal/p2/engine/ProfileMetadataRepository.java
@@ -16,7 +16,6 @@ import java.net.URISyntaxException;
import java.util.*;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.internal.p2.core.helpers.LogHelper;
-import org.eclipse.equinox.internal.p2.metadata.repository.Activator;
import org.eclipse.equinox.internal.provisional.p2.core.eventbus.IProvisioningEventBus;
import org.eclipse.equinox.internal.provisional.p2.repository.RepositoryEvent;
import org.eclipse.equinox.p2.core.IProvisioningAgent;
@@ -213,10 +212,10 @@ public class ProfileMetadataRepository extends AbstractMetadataRepository {
switch (code) {
case ProvisionException.REPOSITORY_NOT_FOUND :
String msg = NLS.bind(Messages.io_NotFound, location);
- throw new ProvisionException(new Status(IStatus.ERROR, Activator.ID, ProvisionException.REPOSITORY_NOT_FOUND, msg, null));
+ throw new ProvisionException(new Status(IStatus.ERROR, EngineActivator.ID, ProvisionException.REPOSITORY_NOT_FOUND, msg, null));
case ProvisionException.REPOSITORY_FAILED_READ :
msg = NLS.bind(Messages.io_FailedRead, location);
- throw new ProvisionException(new Status(IStatus.ERROR, Activator.ID, ProvisionException.REPOSITORY_NOT_FOUND, msg, null));
+ throw new ProvisionException(new Status(IStatus.ERROR, EngineActivator.ID, ProvisionException.REPOSITORY_NOT_FOUND, msg, null));
}
}
}

Back to the top