Is it possible to have more than one break within a repeat in an Activity Diagram?

0 votes
asked Oct 11, 2022 in Bug by anonymous
The following does not produce the diagram that I would expect.  The arrow after "process that reason" is left dangling.

@startuml

start

repeat
if (is this a reason to be done?) then (yes)
  :process this reason;
  break
else (no)
endif

if (is that a reason to be done?) then (yes)
  :process that reason;
  break
else (no)
endif

repeat while (done yet?) is (no)

stop

@enduml

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:

[Antispam2 Feature: please please wait 1 or 2 minutes (this message will disappear) before pressing the button otherwise it will fail](--------)
To avoid this verification in future, please log in or register.
...