This is an automated email from the ASF dual-hosted git repository. brahma pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/trunk by this push: new 03e42ef YARN-10544. AMParams.java having un-necessary access identifier static final. Contributed by ANANDA G B. 03e42ef is described below commit 03e42efa30bc084f6d9e45822c25ec87ead78e15 Author: Brahma Reddy Battula <bra...@apache.org> AuthorDate: Wed Mar 31 08:25:20 2021 +0530 YARN-10544. AMParams.java having un-necessary access identifier static final. Contributed by ANANDA G B. --- .../hadoop/mapreduce/v2/app/webapp/AMParams.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/webapp/AMParams.java b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/webapp/AMParams.java index 2ca7ff5..4bbd1da 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/webapp/AMParams.java +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-app/src/main/java/org/apache/hadoop/mapreduce/v2/app/webapp/AMParams.java @@ -22,13 +22,13 @@ package org.apache.hadoop.mapreduce.v2.app.webapp; * Params constants for the AM webapp and the history webapp. */ public interface AMParams { - static final String RM_WEB = "rm.web"; - static final String APP_ID = "app.id"; - static final String JOB_ID = "job.id"; - static final String TASK_ID = "task.id"; - static final String TASK_TYPE = "task.type"; - static final String TASK_STATE = "task.state"; - static final String ATTEMPT_STATE = "attempt.state"; - static final String COUNTER_GROUP = "counter.group"; - static final String COUNTER_NAME = "counter.name"; + String RM_WEB = "rm.web"; + String APP_ID = "app.id"; + String JOB_ID = "job.id"; + String TASK_ID = "task.id"; + String TASK_TYPE = "task.type"; + String TASK_STATE = "task.state"; + String ATTEMPT_STATE = "attempt.state"; + String COUNTER_GROUP = "counter.group"; + String COUNTER_NAME = "counter.name"; } --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org