HADOOP-8359. Fix javadoc warnings in Configuration. Contributed by Anupam Seth

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1335258 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tsz-wo Sze 2012-05-07 21:11:01 +00:00
parent 567aed4f2c
commit 07280c9761
2 changed files with 5 additions and 2 deletions

View File

@ -426,6 +426,9 @@ Release 2.0.0 - UNRELEASED
HADOOP-8328. Duplicate FileSystem Statistics object for 'file' scheme. HADOOP-8328. Duplicate FileSystem Statistics object for 'file' scheme.
(tomwhite) (tomwhite)
HADOOP-8359. Fix javadoc warnings in Configuration. (Anupam Seth via
szetszwo)
BREAKDOWN OF HADOOP-7454 SUBTASKS BREAKDOWN OF HADOOP-7454 SUBTASKS
HADOOP-7455. HA: Introduce HA Service Protocol Interface. (suresh) HADOOP-7455. HA: Introduce HA Service Protocol Interface. (suresh)

View File

@ -278,7 +278,7 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
* @param key * @param key
* @param newKeys * @param newKeys
* @param customMessage * @param customMessage
* @deprecated use {@link addDeprecation(String key, String newKey, * @deprecated use {@link #addDeprecation(String key, String newKey,
String customMessage)} instead String customMessage)} instead
*/ */
@Deprecated @Deprecated
@ -328,7 +328,7 @@ public class Configuration implements Iterable<Map.Entry<String,String>>,
* *
* @param key Key that is to be deprecated * @param key Key that is to be deprecated
* @param newKeys list of keys that take up the values of deprecated key * @param newKeys list of keys that take up the values of deprecated key
* @deprecated use {@link addDeprecation(String key, String newKey)} instead * @deprecated use {@link #addDeprecation(String key, String newKey)} instead
*/ */
@Deprecated @Deprecated
public synchronized static void addDeprecation(String key, String[] newKeys) { public synchronized static void addDeprecation(String key, String[] newKeys) {