rptOut.println(" > replacing : " + existingPkg + " with : " + pkgToMerge);
return;
}
// if present and don't match then throw error
if (existingPkg instanceof OsgiR4Package && existingPkg.compareTo(pkgToMerge) != 0)
{
rptOut.println("*** ERROR *** can't merge conflicting package details: " + pkgToMerge
+ " != " + existingPkg);
return;
}