Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2010-03-10 02:56:13 +0000
committerspingel2010-03-10 02:56:13 +0000
commit1ec00bbaf294b64d1fcf6e6a2e52471f6e6aae3b (patch)
tree853c1551061b58dbab3485334913b82f444652f8 /bundles/org.eclipse.equinox.p2.discovery.compatibility
parentadf2a61e257c1bebf8478a81ff62567ed3b29b2c (diff)
downloadrt.equinox.p2-1ec00bbaf294b64d1fcf6e6a2e52471f6e6aae3b.tar.gz
rt.equinox.p2-1ec00bbaf294b64d1fcf6e6a2e52471f6e6aae3b.tar.xz
rt.equinox.p2-1ec00bbaf294b64d1fcf6e6a2e52471f6e6aae3b.zip
fixed typo in bundle id
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.discovery.compatibility')
-rw-r--r--bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/DiscoveryRegistryStrategy.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/DiscoveryRegistryStrategy.java b/bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/DiscoveryRegistryStrategy.java
index 3bd7b1eed..b42f33f75 100644
--- a/bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/DiscoveryRegistryStrategy.java
+++ b/bundles/org.eclipse.equinox.p2.discovery.compatibility/src/org/eclipse/equinox/internal/p2/discovery/compatibility/DiscoveryRegistryStrategy.java
@@ -55,7 +55,7 @@ class DiscoveryRegistryStrategy extends RegistryStrategy {
// we must add a contribution from the core bundle so that we get the
// extension point itself
try {
- Bundle bundle = Platform.getBundle("org.eclipse.equinox.p2.discovery.compatiblity"); //$NON-NLS-1$
+ Bundle bundle = Platform.getBundle("org.eclipse.equinox.p2.discovery.compatibility"); //$NON-NLS-1$
IContributor contributor = new RegistryContributor(bundle.getSymbolicName(), bundle.getSymbolicName(), null, null);
InputStream inputStream = bundle.getEntry("plugin.xml").openStream(); //$NON-NLS-1$

Back to the top