1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-11-30 00:33:53 +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); return Collections.unmodifiableCollection(result2);
} }
if (this.contains(pause)) { if (this.contains(pause)) {
assert pendingStart < pause.pos1;
result2.add(new Segment(pendingStart, pause.pos1)); result2.add(new Segment(pendingStart, pause.pos1));
pendingStart = pause.pos2; pendingStart = pause.pos2;
} }