in dotTrace-server/src/main/java/jetbrains/buildServer/dotTrace/server/StatisticProviderImpl.java [66:71]
private BigDecimal GetPrevValue(@Nullable final ValueAggregator timeAgg, @NotNull final ThresholdValue timeThreshold)
{
return timeAgg != null
? timeAgg.tryGetAggregatedValue()
: timeThreshold.getType() == ThresholdValueType.ABSOLUTE ? timeThreshold.getValue() : null;
}