// no luck so far. Look at the task in question, and see if it only
// includes a single phase child (typical for old-style team projects
// with phase stubs).
DashHierarchy hier = context.getHierarchy();
PropertyKey defectPathKey = hier.findExistingKey(defectPath);
if (defectPathKey != null) {
Enumeration leafNames = hier.getLeafNames(defectPathKey);
List possibleMatches = new ArrayList();
while (leafNames.hasMoreElements()) {
String oneLeaf = (String) leafNames.nextElement();