MathewWi / umple

Automatically exported from code.google.com/p/umple
0 stars 0 forks source link

Ignored transition due to unguarded duplicate event still being generated. #608

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Considering the following example:

class X {
  sm {
    s1 
    {
      e -> s3;
      -> s2;
      -> s3;
    }
    s2 {}
    s3 {}
  }
}

Even tough the code raises a warning 54 "Transition e will be ignored due to a 
unguarded duplicate event.", the transition "e -> s3" is not being dis 
considered and appears in the generated code.

Original issue reported on code.google.com by PedroAug...@gmail.com on 21 Jul 2014 at 3:43

GoogleCodeExporter commented 9 years ago
Following the patch to solve this issue.

Original comment by PedroAug...@gmail.com on 5 Aug 2014 at 7:15

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by CraigBry...@gmail.com on 8 Feb 2015 at 2:35