Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2010-09-01 19:38:44 +0000
committerJohn Arthorne2010-09-01 19:38:44 +0000
commitac10855d6478b82dcf7fa85e789efa40c27f63eb (patch)
tree018dfad3d42596f07599688e5c80cce3a5bbae9b /bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher
parent26aaad9e282dc45fe8eca2c52b59a896e21459f4 (diff)
downloadrt.equinox.p2-ac10855d6478b82dcf7fa85e789efa40c27f63eb.tar.gz
rt.equinox.p2-ac10855d6478b82dcf7fa85e789efa40c27f63eb.tar.xz
rt.equinox.p2-ac10855d6478b82dcf7fa85e789efa40c27f63eb.zip
Bug 317598 - Delete extra createArtifactDescriptor method on PublisherHelper
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher')
-rw-r--r--bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java
index 7e405acbc..907c1d791 100644
--- a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java
+++ b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher/PublisherHelper.java
@@ -33,7 +33,6 @@ import org.osgi.framework.Constants;
/**
* This class was originally the MetadataGeneratorHelper from the Generator.
* Much of the code has been deprecated and will be removed.
- *
*/
public class PublisherHelper {
/**
@@ -92,14 +91,6 @@ public class PublisherHelper {
}
/**
- * TODO remove because the method with IPublisherInfo is more powerful
- * @deprecated use {@link #createArtifactDescriptor(IPublisherInfo, IArtifactRepository, IArtifactKey, File)} instead.
- */
- public static IArtifactDescriptor createArtifactDescriptor(IArtifactRepository artifactRepo, IArtifactKey key, File pathOnDisk) {
- return createArtifactDescriptor(null, artifactRepo, key, pathOnDisk);
- }
-
- /**
* Creates an artifact descriptor for the given key and path.
* @param info the publisher info
* @param key the key of the artifact to publish

Back to the top