1
0
mirror of https://github.com/octoleo/plantuml.git synced 2025-04-09 19:51:50 +00:00
This commit is contained in:
Arnaud Roques 2022-01-27 18:22:47 +01:00
parent 6fb89e85e7
commit 5ad243efd4
2 changed files with 5 additions and 4 deletions

View File

@ -113,6 +113,7 @@ public class Segment {
return Collections.unmodifiableCollection(result2);
}
if (this.contains(pause)) {
assert pendingStart < pause.pos1;
result2.add(new Segment(pendingStart, pause.pos1));
pendingStart = pause.pos2;
}