PlantUML crashes with an activity diagram

0 votes
asked Feb 2, 2017 in To be sorted by anonymous
Hello,
 
the following example is not translated into activity diagram and display a bug report.
Please any suggestions?
 
 
@startuml
skinparam monochrome true
start
:Text ;
repeat
:Text 0;
   if (condition A) then (yes)
      :Text 1;
   elseif (condition B) then (yes)
       :Text 2;
   else (no)
:Text 3;
   endif
:Text 5;
if (condition B ? ) then (yes)
  :Text 6;
else (no)
  break
endif
repeat while (condition C ? )is (yes) not (no)
->
 :Text 8;
stop
@enduml

asked 4 hours ago in bug by me

1 Answer

0 votes
answered Feb 2, 2017 by plantuml (298,440 points)
Thanks for the report.
This is a bug of the "break" feature.

Here is a beta that fixes it: https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

The drawing is not perfect, but it works.
Tell us if you still have issues.

Thanks again
...