for (File descendent : newSourcePath)
{
if ((sourcePathEntry != descendent) &&
(isAncestorOf(sourcePathEntry, descendent)))
{
problems.add(new OverlappingSourcePathProblem(sourcePathEntry, descendent));
}
}
String locale = null;
if (compilerProject instanceof IFlexProject)