This "Pseudo sprite" example from plantuml documentation causes java.lang.UnsupportedOperationException
Documentation: https://plantuml.com/salt (in the "Pseudo sprite" section)
Example from the documentation below:
@startsalt
{
[X] checkbox|[] checkbox
() radio | (X) radio
This is a text|[This is my button]|This is another text
"A field"|"Another long Field"|[A button]
<<folder
............
.XXXXX......
.X...X......
.XXXXXXXXXX.
.X........X.
.X........X.
.X........X.
.X........X.
.XXXXXXXXXX.
............
>>|<color:blue>other folder|<<folder>>
^Droplist^
}
@endsalt
Specifically, it's the <<folder .. <<folder>> that's causing the issue. Remove that and it's fine.
This "Pseudo sprite" example from plantuml documentation causes
java.lang.UnsupportedOperationException
Documentation: https://plantuml.com/salt (in the "Pseudo sprite" section) Example from the documentation below:
Specifically, it's the
<<folder
..<<folder>>
that's causing the issue. Remove that and it's fine.