Skip to content

Commit

Permalink
MAPREDUCE-7256. Fix javadoc error in SimpleExponentialSmoothing. (#1804)
Browse files Browse the repository at this point in the history
(cherry picked from commit a2fdd7c)
  • Loading branch information
iwasakims authored and aajisaka committed Jan 15, 2020
1 parent 6deb6be commit 7a309f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ public ForecastRecord append(final long newTimeStamp, final double rData) {
/**
* checks if the task is hanging up.
* @param timeStamp current time of the scan.
* @return true if we have number of samples > kMinimumReads and the record
* timestamp has expired.
* @return true if we have number of samples {@literal >} kMinimumReads and the
* record timestamp has expired.
*/
public boolean isDataStagnated(final long timeStamp) {
ForecastRecord rec = forecastRefEntry.get();
Expand Down

0 comments on commit 7a309f1

Please sign in to comment.