Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2010-06-22 15:00:38 +0000
committerJohn Arthorne2010-06-22 15:00:38 +0000
commit1e11b49c07430dded1a4207b7e03e860f47d424d (patch)
tree48028ce82078ae7b0a8d0dbc91a956e0921b0936 /bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/spi/p2/publisher
parente7efb9f392097a7be4e9ad71d6aaf016505c6d75 (diff)
downloadrt.equinox.p2-1e11b49c07430dded1a4207b7e03e860f47d424d.tar.gz
rt.equinox.p2-1e11b49c07430dded1a4207b7e03e860f47d424d.tar.xz
rt.equinox.p2-1e11b49c07430dded1a4207b7e03e860f47d424d.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.java5
1 files changed, 4 insertions, 1 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 9136fa894..7e405acbc 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
@@ -91,7 +91,10 @@ public class PublisherHelper {
return createArtifactDescriptor(null, null, key, pathOnDisk);
}
- //TODO remove because the method with IPublisherInfo is more powerful
+ /**
+ * 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);
}

Back to the top