From 2830ee5f0fdbdf8123d0dd0858baf2c059a3f96f Mon Sep 17 00:00:00 2001 From: Akira Ajisaka Date: Sat, 25 Jun 2016 00:26:24 +0900 Subject: [PATCH] MAPREDUCE-6725. Javadoc for CLI#listEvents() contains no-existent param. Contributed by shenyinjie. (cherry picked from commit 0f23cd497b0baa0899c7565cd94e2f27dbc7c0ff) --- .../src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java index 3ae59ede18d..facd75945a5 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/java/org/apache/hadoop/mapreduce/tools/CLI.java @@ -626,7 +626,9 @@ public class CLI extends Configured implements Tool { /** * List the events for the given job - * @param jobId the job id for the job's events to list + * @param job the job to list + * @param fromEventId event id for the job's events to list from + * @param numEvents number of events we want to list * @throws IOException */ private void listEvents(Job job, int fromEventId, int numEvents)