mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-20 04:35:32 +00:00
fixed merge issue w.r.t. TimeRange.startsAfter vs. startsAtOrAfter
Change-Id: Ie4d625c93acf4fbc0479877b268e9671ec34e19c
This commit is contained in:
+1
-1
@@ -111,7 +111,7 @@ public abstract class AbstractGribWindFieldImpl implements GribWindField {
|
||||
final TimeRange timeRange = getTimeRange();
|
||||
if (timeRange.includes(timePoint)) {
|
||||
result = 1.0;
|
||||
} else if (timeRange.startsAfter(timePoint)) {
|
||||
} else if (timeRange.startsAtOrAfter(timePoint)) {
|
||||
result = timeConfidenceWeigher.getConfidence(timeRange.from(), timePoint);
|
||||
} else {
|
||||
assert timeRange.endsBefore(timePoint);
|
||||
|
||||
Reference in New Issue
Block a user