Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2008-04-04 19:30:33 +0000
committerJohn Arthorne2008-04-04 19:30:33 +0000
commit94e792392081ae65fb4a73b9c7e7b7630e448af6 (patch)
tree176c0cf00373f510644734c3a7baadd9544984a9
parente09864d1ac211a64e310794b0d83227f268a8bc0 (diff)
downloadrt.equinox.p2-94e792392081ae65fb4a73b9c7e7b7630e448af6.tar.gz
rt.equinox.p2-94e792392081ae65fb4a73b9c7e7b7630e448af6.tar.xz
rt.equinox.p2-94e792392081ae65fb4a73b9c7e7b7630e448af6.zip
Bug 225145 director.app puts bundlepool location in artifacts.xml
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java3
-rw-r--r--bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties2
2 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
index d31d2f69e..fcead9bbd 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/Util.java
@@ -7,6 +7,7 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
+ * Red Hat Incorporated - fix for bug 225145
*******************************************************************************/
package org.eclipse.equinox.internal.p2.touchpoint.eclipse;
@@ -72,7 +73,7 @@ public class Util {
//the repository doesn't exist, so fall through and create a new one
}
try {
- String repositoryName = location + Messages.BundlePool;
+ String repositoryName = Messages.BundlePool;
IArtifactRepository bundlePool = manager.createRepository(location, repositoryName, REPOSITORY_TYPE);
manager.addRepository(bundlePool.getLocation());
bundlePool.setProperty(IRepository.PROP_SYSTEM, Boolean.valueOf(true).toString());
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties
index 9ebb02240..91e637472 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.eclipse/src/org/eclipse/equinox/internal/p2/touchpoint/eclipse/messages.properties
@@ -13,4 +13,4 @@ error_loading_manipulator=Error while loading manipulator.
-BundlePool=\ - bundle pool
+BundlePool=Bundle pool

Back to the top