فهرست منبع

HADOOP-6885. Fix java doc warnings in Groups and RefreshUserMappingsProtocol. Contributed by Eli Collins.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@986961 13f79535-47bb-0310-9956-ffa450edef68
Jakob Homan 15 سال پیش
والد
کامیت
76e22cc8bf

+ 3 - 0
CHANGES.txt

@@ -196,6 +196,9 @@ Trunk (unreleased changes)
     HADOOP-6715. Fixes AccessControlList.toString() to return a descriptive
     String representation of the ACL. (Ravi Gummadi via amareshwari)
 
+    HADOOP-6885. Fix java doc warnings in Groups and RefreshUserMappingsProtocol.
+    (Eli Collins via jghoman) 
+
 Release 0.21.0 - Unreleased
 
   INCOMPATIBLE CHANGES

+ 2 - 2
src/java/org/apache/hadoop/ipc/Client.java

@@ -939,7 +939,7 @@ public class Client {
   /** Make a call, passing <code>param</code>, to the IPC server running at
    * <code>address</code>, returning the value.  Throws exceptions if there are
    * network problems or if the remote code threw an exception.
-   * @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation)} instead 
+   * @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation, int)} instead 
    */
   @Deprecated
   public Writable call(Writable param, InetSocketAddress address)
@@ -952,7 +952,7 @@ public class Client {
    * the value.  
    * Throws exceptions if there are network problems or if the remote code 
    * threw an exception.
-   * @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation)} instead 
+   * @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation, int)} instead 
    */
   @Deprecated
   public Writable call(Writable param, InetSocketAddress addr, 

+ 1 - 1
src/java/org/apache/hadoop/security/Groups.java

@@ -127,7 +127,7 @@ public class Groups {
   
   /**
    * Get the groups being used to map user-to-groups.
-   * @param Configuration
+   * @param conf
    * @return the groups being used to map user-to-groups.
    */
   public static Groups getUserToGroupsMappingService(Configuration conf) {

+ 0 - 1
src/java/org/apache/hadoop/security/RefreshUserMappingsProtocol.java

@@ -43,7 +43,6 @@ public interface RefreshUserMappingsProtocol extends VersionedProtocol {
 
   /**
    * Refresh user to group mappings.
-   * @param conf
    * @throws IOException
    */
   public void refreshUserToGroupsMappings() throws IOException;