Eclipse plugin not working (for me)

0 votes
asked Jun 3, 2022 in Question / help by anonymous
I installed plugin as instructed but the following (apparently correct) diagram results in an error message: "an error has occurred : java.lang.IllegalArgumentException: Not a H or V line!"

Offending diagram:

```

@startuml
start
:Initialization;
if (fatal error) then (bail out)
    #orangered:Log critical: <error reason>;
    stop
else (normal behavior)
    fork
        repeat :LRM subscribe(Global)\ncallback function;
            :check command;
            :queue command>
        repeat while
        kill
    fork again
        repeat :Dequeue\nGlobal command<
            :analyze command;
            :execute command;
        repeat while
        kill
    fork again
        repeat :LRM subscribe(Chime)\ncallback function;
            :check command;
            :queue command>
        repeat while
        kill
    fork again
        repeat :dequeue Chime command\nwith timeout (> 1s)<
            if (timeout) then (timeout)
                :queue cleanup;
            else (command available)
                :queue scan;
                :analyze command;
                :execute command;
            endif
        repeat while
        kill
    end fork
    stop
endif
@enduml

```

I *think* it's a problem with an old plantuml.jar, but I have no idea how to upgrade it.

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.
...