}
public ExportPackage[] resolve(String name, VersionRange versionRange, boolean mandatory) {
// check if the system packages supply the package
if (systemPackages != null && systemPackages.contains(name)) {
return new ExportPackage[] { new ExportPackage(null, name, Version.emptyVersion) };
}
List<ExportPackage> list = exportedPackages.get(name);
if (list == null) {
return new ExportPackage[0];