Fix bug with meta ids

This commit is contained in:
Chris Myers 2021-11-30 18:19:36 -07:00
parent a1259bb46a
commit 82c020dddb

View file

@ -5483,7 +5483,11 @@ public class SBMLutilities extends CoreObservable
{
if (!asb.getMetaId().equals(newId))
{
asb.setMetaId(newId);
try {
asb.setMetaId(newId);
} catch (Exception e) {
setMetaId(asb, newId + "_");
}
}
}