瀏覽代碼

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

Masatake Iwasaki 5 年之前
父節點
當前提交
a2fdd7c2b5

+ 2 - 2
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/speculate/forecast/SimpleExponentialSmoothing.java

@@ -131,8 +131,8 @@ public class SimpleExponentialSmoothing {
   /**
    * 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();