Fix bug with meta ids
This commit is contained in:
parent
a1259bb46a
commit
82c020dddb
1 changed files with 5 additions and 1 deletions
|
|
@ -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 + "_");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue