Skip to content

Commit

Permalink
Fix "isFinalSpecification" to "isFinalSpecialization"
Browse files Browse the repository at this point in the history
  • Loading branch information
niklauslee committed Dec 28, 2014
1 parent f691e9d commit e6fc75a
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 131 deletions.
2 changes: 1 addition & 1 deletion CsharpCodeGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ define(function (require, exports, module) {
if (elem.isAbstract === true) {
modifiers.push("abstract");
}
if (elem.isFinalSpecification === true || elem.isLeaf === true) {
if (elem.isFinalSpecialization === true || elem.isLeaf === true) {
modifiers.push("sealed");
}
//if (elem.concurrency === UML.CCK_CONCURRENT) {
Expand Down
Loading

0 comments on commit e6fc75a

Please sign in to comment.