o merged from r638669 (MNG-3468: add FileSet.toString() method for debugging. patch from Wayne Fay)

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@672512 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Vincent Siveton 2008-06-28 12:44:00 +00:00
parent bd379f7e01
commit f43ec427f0
1 changed files with 16 additions and 0 deletions

View File

@ -2423,6 +2423,22 @@
<type>String</type>
</field>
</fields>
<codeSegments>
<codeSegment>
<version>4.0.0</version>
<code>
<![CDATA[
/**
* @see java.lang.Object#toString()
*/
public String toString()
{
return "FileSet {directory: " + getDirectory() + ", " + super.toString() + "}";
}
]]>
</code>
</codeSegment>
</codeSegments>
</class>
<class>
<name>Resource</name>