Skip to content

Commit

Permalink
fix checkNonAlignedDeviceSeries
Browse files Browse the repository at this point in the history
  • Loading branch information
shuwenwei committed Dec 17, 2024
1 parent f78bbdb commit 52b844f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ private void checkNonAlignedDeviceSeries(
actualDeviceStartTime =
Math.min(actualDeviceStartTime, timeseriesMetadata.getStatistics().getStartTime());
actualDeviceEndTime =
Math.max(actualDeviceStartTime, timeseriesMetadata.getStatistics().getEndTime());
Math.max(actualDeviceEndTime, timeseriesMetadata.getStatistics().getEndTime());
checkSingleNonAlignedSeries(reader, device, timeseriesMetadata);
previousTime = Long.MIN_VALUE;
}
Expand Down

0 comments on commit 52b844f

Please sign in to comment.