If all leaves end with a "stop", why is the graph trying to continue with an odd line below the stop bullets?

0 votes
asked Aug 1, 2013 in Bug by anonymous
See the example below. All branches end with a stop. However, there is a strange line added below the graph. It seems that it assumes that at least one path has to continue to the end. If the nested decision is removed and only two branches of one decision end with a stop each, the graph is drawn correctly.


start
if (a) then (yes)
  :asdf;
  stop
else
  if (b) then (yes)
    :asdf;
    stop
  else (no)
    :asdf;
    stop
  endif
endif

1 Answer

0 votes
answered Aug 1, 2013 by plantuml (295,000 points)
commented Aug 1, 2013 by anonymous
Ok, you got me. I used the Confluence Plugin for PlantUML (https://marketplace.atlassian.com/plugins/de.griffel.confluence.plugins.plant-uml). This uses V7965. Thanks for trying.
...