Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2010-02-19 22:09:11 +0000
committerJohn Arthorne2010-02-19 22:09:11 +0000
commita50d3ba871094cbd7575009829265f587d5f6f82 (patch)
tree420113d8233079dcdca43df86bd91799c1681871 /bundles
parentef5d7e12abe54f945b0d202dcc90e406d387a3a5 (diff)
downloadrt.equinox.p2-a50d3ba871094cbd7575009829265f587d5f6f82.tar.gz
rt.equinox.p2-a50d3ba871094cbd7575009829265f587d5f6f82.tar.xz
rt.equinox.p2-a50d3ba871094cbd7575009829265f587d5f6f82.zip
removed unused constructor
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/simple/SimpleArtifactDescriptor.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/simple/SimpleArtifactDescriptor.java b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/simple/SimpleArtifactDescriptor.java
index e458813ee..baa18869b 100644
--- a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/simple/SimpleArtifactDescriptor.java
+++ b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/internal/p2/artifact/repository/simple/SimpleArtifactDescriptor.java
@@ -29,10 +29,6 @@ public class SimpleArtifactDescriptor extends ArtifactDescriptor {
super(base);
}
- public SimpleArtifactDescriptor(SimpleArtifactDescriptor base) {
- super(base);
- }
-
public String getRepositoryProperty(String propertyKey) {
return repositoryProperties.get(propertyKey);
}

Back to the top