Trying to make it so that I can have a public static element on a map. The first image is the intended way, with just needing to have a "+" on method1, but when I add it, it gets switched to a comment as in image 2 which I don't want.
User::method3 --> Interface::__method1__
vs
User::method3 --> Interface::__+method1__
Thanks!
full plantuml:
@startuml
map User {
method3 =>
}
map Interface {
__method1__ => void
method2 =>
}
User::method3 --> Interface::__method1__
@enduml