Hello PlantUML team,
- Could you allow style with or on switch-case, on Activity Diagram?
Without style, OK:
@startuml
switch (test?)
case (condition A)
:Text 1;
endswitch
@enduml
With empty style or style, we observe only today a java.lang.IllegalStateException
Here is a minimal example:
@startuml
<style>
</style>
switch (test?)
case (condition A)
:Text 1;
endswitch
@enduml
Regards,
Th.