Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2009-04-09 21:05:29 +0000
committerAndrew Niefer2009-04-09 21:05:29 +0000
commit3fa14d9e4131af594dc15b8cf580d8a57f1e9c75 (patch)
tree92d11971d38e1dadc70358572888be45d0a372b9
parentba42b2c56a8bc962b232e0c2516bf879716c235a (diff)
downloadrt.equinox.p2-3fa14d9e4131af594dc15b8cf580d8a57f1e9c75.tar.gz
rt.equinox.p2-3fa14d9e4131af594dc15b8cf580d8a57f1e9c75.tar.xz
rt.equinox.p2-3fa14d9e4131af594dc15b8cf580d8a57f1e9c75.zip
fix toString
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java b/bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java
index 9cc87f102..5fdb90312 100644
--- a/bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java
+++ b/bundles/org.eclipse.equinox.p2.repository.tools/src_ant/org/eclipse/equinox/p2/internal/repository/tools/tasks/IUDescription.java
@@ -70,7 +70,7 @@ public class IUDescription extends DataType {
}
public String toString() {
- StringBuffer buffer = new StringBuffer("IU["); //$NON-NLS-1$
+ StringBuffer buffer = new StringBuffer("Installable Unit ["); //$NON-NLS-1$
if (id != null) {
buffer.append(" id="); //$NON-NLS-1$
buffer.append(id);
@@ -83,7 +83,8 @@ public class IUDescription extends DataType {
buffer.append(" query="); //$NON-NLS-1$
buffer.append(queryString);
}
- return super.toString();
+ buffer.append(" ]"); //$NON-NLS-1$
+ return buffer.toString();
}
public Query createQuery() {

Back to the top