mirror of https://github.com/apache/ant-ivy
add toString implementation to repository listing entries
git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/core/trunk@596215 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b7478d6d6f
commit
4528a23a10
|
|
@ -45,4 +45,7 @@ public class ModuleEntry {
|
|||
return organisationEntry;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return organisationEntry + "#" + module;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -37,4 +37,7 @@ public class OrganisationEntry {
|
|||
return resolver;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return organisation;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -53,4 +53,7 @@ public class RevisionEntry {
|
|||
return moduleEntry.getResolver();
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return moduleEntry + ";" + revision;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue