@@ -265,7 +265,7 @@ private static <X> LocalDateSegment<X> tilpassSegment(boolean harSegment, LocalD
265
265
if (!harSegment ) {
266
266
return null ;
267
267
}
268
- if (segment .getLocalDateInterval ().equals (ønsketIntervall )){
268
+ if (segment .getLocalDateInterval ().equals (ønsketIntervall )) {
269
269
return segment ;
270
270
}
271
271
return segmentSplitter .apply (ønsketIntervall , segment );
@@ -307,7 +307,7 @@ public LocalDateTimeline<V> compress(BiPredicate<V, V> e, LocalDateSegmentCombin
307
307
public LocalDateTimeline <V > compress (BiPredicate <LocalDateInterval , LocalDateInterval > a , BiPredicate <V , V > e , LocalDateSegmentCombinator <V , V , V > c ) {
308
308
var factory = new CompressorFactory <>(a , e , c );
309
309
TimelineCompressor <V > compressor = segments .stream ()
310
- .collect (factory ::get , TimelineCompressor ::accept , TimelineCompressor ::combine );
310
+ .collect (factory ::get , TimelineCompressor ::accept , TimelineCompressor ::combine );
311
311
312
312
return new LocalDateTimeline <>(compressor .segmenter );
313
313
}
@@ -609,7 +609,8 @@ public static <V> LocalDateTimeline<List<V>> buildGroupOverlappingSegments(Colle
609
609
@ SuppressWarnings ({"cast" })
610
610
var uniqueSegments = segmentsWithPossibleOverlaps .stream ().map (s -> new LocalDateSegment <>(s .getLocalDateInterval (), (List <V >) new ArrayList <V >()))
611
611
.collect (Collectors .toList ());
612
- var uniqueIntervalTimeline = new LocalDateTimeline <>(uniqueSegments , (interval , lhs , rhs ) -> new LocalDateSegment <>(interval , new ArrayList <V >()));
612
+
613
+ var uniqueIntervalTimeline = new LocalDateTimeline <>(uniqueSegments , (interval , lhs , rhs ) -> new LocalDateSegment <>(interval , new ArrayList <V >()), LocalDateTimeline ::createNewListOnSplit );
613
614
614
615
for (var per : uniqueIntervalTimeline .toSegments ()) {
615
616
for (var seg : segmentsWithPossibleOverlaps ) {
@@ -621,6 +622,13 @@ public static <V> LocalDateTimeline<List<V>> buildGroupOverlappingSegments(Colle
621
622
return uniqueIntervalTimeline ;
622
623
}
623
624
625
+ private static <V > LocalDateSegment <List <V >> createNewListOnSplit (LocalDateInterval di , LocalDateSegment <List <V >> seg ) {
626
+ if (di .equals (seg .getLocalDateInterval ())) {
627
+ return seg ;
628
+ }
629
+ return new LocalDateSegment <>(di , new ArrayList <>(seg .getValue ()));
630
+ }
631
+
624
632
@ Override
625
633
public String toString () {
626
634
return getClass ().getSimpleName () + "<" + //$NON-NLS-1$
@@ -816,7 +824,7 @@ private NavigableMap<LocalDateInterval, Integer> joinLocalDateIntervals(Navigabl
816
824
* Finner alle knekkpunkter fra to tidslinjer, i sekvens.
817
825
* <p>
818
826
* Knekkpunkter er 'start av et intervall' og 'dagen etter slutt av et intervall'. Sistnevnte fordi det da kan være starten på et nytt intervall
819
- *
827
+ * <p>
820
828
* Hvis slutt av intervall er LocalDate.MAX, er dagen etter ikke representerbar i LocalDate, derfor bruker denne klassen epochDay istedet
821
829
*/
822
830
private static class KnekkpunktIterator <V , T > {
0 commit comments