Skip to content

Commit

Permalink
Merge branch 'release/3.5.3' into support/3.x
Browse files Browse the repository at this point in the history
* release/3.5.3:
  Updated dependencies for 3.5.3
  MAGICDRAW-1054 Fixed Table naming bug. #resolve
  Updated version info for 3.5.3
  • Loading branch information
ivan-gomes committed Sep 26, 2018
2 parents e61f373 + 44e0d73 commit d7172a5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ dependencies {
// Other dependencies we're unable to resolve via standard repositories

if (buildAccess == 'internal') {
preCompile group: 'gov.nasa.jpl.cae.magicdraw', name: 'cae-magicdraw-core', version: '3.5.2', ext: 'zip'
preCompile group: 'gov.nasa.jpl.cae.magicdraw', name: 'cae-magicdraw-core', version: '3.5.3', ext: 'zip'
}
else {
preCompile group: 'com.nomagic', name: 'magicdraw', version: '185sp3', classifier: 'MagicDraw_185_sp3_no_install', ext: 'zip'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=3.5.2
version=3.5.3
group=org.openmbee.magicdraw.mdk
descriptorFile=MDR_Plugin_Model_Development_Kit_91110_descriptor.xml
magicdDrawGroupName=gov.nasa.jpl.cae.magicdraw.mdk
Expand Down
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 d7172a5

Please sign in to comment.