public void addNewModelsToRepo(File[] sbmlFiles) {
   for (File sbml : sbmlFiles) {
     MetModel newModel = sbmlParser.parse(sbml, collectionDir); // TODO:check for redundant models
     masterCollection.addModel(newModel);
   }
 }
 public void addNewModelsToRepo(File sbml) {
   MetModel newModel =
       sbmlParser.parse(
           sbml, OpenJDKBugOverrides.getCurrentDir()); // TODO:check for redundant models
   masterCollection.addModel(newModel);
 }