You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-statemachine-uml/src/main/java/org/springframework/statemachine/plantuml/PlantUmlWriterParameters.java
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@
23
23
24
24
importjava.util.HashMap;
25
25
importjava.util.Map;
26
+
importjava.util.TreeMap;
26
27
importjava.util.TreeSet;
27
28
importjava.util.stream.Collectors;
28
29
@@ -188,21 +189,18 @@ String getDirection(S source, S target) {
* Map of ( Connection(sourceSate, targetState) -> Direction )
196
+
* Map of <code>Connection(sourceSate, targetState) -> Direction</code>
199
197
* Used to add EXTRA HIDDEN arrows, which are just helping with diagram layout.<BR/>
200
-
* This is typically useful to 'force' the position of a state comparing to another, EVEN IF THESE TWO STATES AR NOT CONNECTED in the statemachine :-)<BR/>
198
+
* This is typically useful to position a State relative to another, EVEN IF THESE TWO STATES AR NOT CONNECTED in the statemachine :-)<BR/>
0 commit comments