Skip to content

Commit

Permalink
MAGICDRAW-1054 Fixed Table naming bug. #resolve
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-gomes committed Sep 26, 2018
1 parent bae5ad6 commit f6b380d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/gov/nasa/jpl/mbee/mdk/model/TableStructure.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ else if (dgElement instanceof CallBehaviorAction) {
}
if (ts != null) {
bnode = GeneratorUtils.findInitialNode(ts);
if (ts instanceof NamedElement) {
title = ((NamedElement) ts).getName();
}
}
if (dgElement instanceof NamedElement) {
title = ((NamedElement) dgElement).getName();
}
}

Expand Down

0 comments on commit f6b380d

Please sign in to comment.