Problem with a while inside a fork

0 votes
asked Jul 14, 2016 in Closed bug by anonymous
What I'm doing wrong?

This works well:

fork

  |System|

  repeat

    :Update location to User;

  repeat while (Approaching drop-off location?) is (not yet)

  :Notify to user "Driver is approaching";

fork again

  |Driver|

  repeat

    :Send current location;

  repeat while (On the way?)

end fork

But this causes a broken image instead of a diagram:

fork

  |System|

  repeat

    :Update location to User;

  repeat while (Approaching drop-off location?) is (not yet)

  :Notify to user "Driver is approaching";

fork again

  |Driver|

  while (On the way?)

    :Send current location;

  endwhile

end fork

1 Answer

0 votes
answered Jul 18, 2016 by plantuml (295,000 points)
Thanks for the report.

This issue has been fixed in last beta https://dl.dropboxusercontent.com/u/13064071/plantuml.jar
...