Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions flow/enginesrc/org/labkey/flow/analysis/model/FCSHeader.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public long getBeginTime()
if (btim == null)
return 0;

return parseTime(btim);
return parseTimeToMillis(btim);
}

public long getEndTime()
Expand All @@ -175,7 +175,7 @@ public long getEndTime()
if (etim == null)
return 0;

return parseTime(etim);
return parseTimeToMillis(etim);
}

// Issue 38649: flow: parse fractional seconds used in $BTIM keyword
Expand All @@ -187,9 +187,9 @@ private long parseDateTime(String dateStr)

// Issue 38649: flow: parse fractional seconds used in $BTIM keyword
// turns off strict to allow overflow of jiffy seconds
private long parseTime(String dateStr)
private long parseTimeToMillis(String dateStr)
{
return DateUtil.parseTime(dateStr, false);
return DateUtil.parseTimeToMillis(dateStr, false);
}

/** Get the duration in seconds. */
Expand Down