why queue "a" as a {} notation fails?

0 votes
asked Apr 9, 2019 in Bug by boshka (3,940 points)
queue "a" as a

works fine, while

queue "a" as a {

}

fails.

Other component types work fine with {} notation

1 Answer

0 votes
answered Apr 11, 2019 by plantuml (295,000 points)
Thanks for the feedback.

This is fixed in last beta http://beta.plantuml.net/plantuml.jar

Tell us if it's not working for you.
commented Apr 11, 2019 by boshka (3,940 points)
thanks! If queue is empty, that works. However, still fails if I put subcomponents inside the queue and try linking the subcomponent:

queue "a" as a {
      component "b" as b {
     }
}
component "c" as c {
}
b->c: test
commented Apr 12, 2019 by plantuml (295,000 points)
Thanks again for your tests!
It should be ok with last beta http://beta.plantuml.net/plantuml.jar
Tell us if you find other issues!
commented Apr 12, 2019 by boshka (3,940 points)
thank you! looks ok so far!
...