Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2006-04-26 19:10:14 +0000
committerThomas Watson2006-04-26 19:10:14 +0000
commitf953ec59001faec1ba5bd362bb29c7f44b8533fc (patch)
tree9abf30cdaf6d9f37d5a7a62c503a1d4946d1af87
parent760459f0ece297a26a69d9d3e1f400d782179305 (diff)
downloadrt.equinox.framework-f953ec59001faec1ba5bd362bb29c7f44b8533fc.tar.gz
rt.equinox.framework-f953ec59001faec1ba5bd362bb29c7f44b8533fc.tar.xz
rt.equinox.framework-f953ec59001faec1ba5bd362bb29c7f44b8533fc.zip
Bug 138712 Debug message for imported and exported packages use old specification-version
-rw-r--r--bundles/org.eclipse.osgi/core/framework/org/eclipse/osgi/framework/internal/core/ExportedPackageImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.osgi/core/framework/org/eclipse/osgi/framework/internal/core/ExportedPackageImpl.java b/bundles/org.eclipse.osgi/core/framework/org/eclipse/osgi/framework/internal/core/ExportedPackageImpl.java
index 634b47e06..c902449dd 100644
--- a/bundles/org.eclipse.osgi/core/framework/org/eclipse/osgi/framework/internal/core/ExportedPackageImpl.java
+++ b/bundles/org.eclipse.osgi/core/framework/org/eclipse/osgi/framework/internal/core/ExportedPackageImpl.java
@@ -81,7 +81,7 @@ public class ExportedPackageImpl implements ExportedPackage {
public String toString() {
StringBuffer result = new StringBuffer(getName());
if (specVersion != null) {
- result.append("; ").append(Constants.PACKAGE_SPECIFICATION_VERSION); //$NON-NLS-1$
+ result.append("; ").append(Constants.VERSION_ATTRIBUTE); //$NON-NLS-1$
result.append("=\"").append(specVersion).append("\""); //$NON-NLS-1$//$NON-NLS-2$
}
return result.toString();

Back to the top