o Added toString() to ease debugging

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@799309 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-07-30 15:05:00 +00:00
parent 08bb4081d4
commit 2563edc285
1 changed files with 7 additions and 0 deletions

View File

@ -46,4 +46,11 @@ public List<String> getDefaultPhases()
{
return defaultPhases;
}
@Override
public String toString()
{
return id + " -> " + phases;
}
}