MAPREDUCE-7256. Fix javadoc error in SimpleExponentialSmoothing. (#1804)

(cherry picked from commit a2fdd7c2b5)
This commit is contained in:
Masatake Iwasaki 2020-01-15 12:09:09 +09:00 committed by Akira Ajisaka
parent 3a09593a73
commit ce52a66fcb
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ public class SimpleExponentialSmoothing {
/** /**
* checks if the task is hanging up. * checks if the task is hanging up.
* @param timeStamp current time of the scan. * @param timeStamp current time of the scan.
* @return true if we have number of samples > kMinimumReads and the record * @return true if we have number of samples {@literal >} kMinimumReads and the
* timestamp has expired. * record timestamp has expired.
*/ */
public boolean isDataStagnated(final long timeStamp) { public boolean isDataStagnated(final long timeStamp) {
ForecastRecord rec = forecastRefEntry.get(); ForecastRecord rec = forecastRefEntry.get();