Skip to content

Commit 1bf7001

Browse files
committed
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
1 parent 755e2c2 commit 1bf7001

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@ Trunk (unreleased changes)
196196
HADOOP-6715. Fixes AccessControlList.toString() to return a descriptive
197197
String representation of the ACL. (Ravi Gummadi via amareshwari)
198198

199+
HADOOP-6885. Fix java doc warnings in Groups and RefreshUserMappingsProtocol.
200+
(Eli Collins via jghoman)
201+
199202
Release 0.21.0 - Unreleased
200203

201204
INCOMPATIBLE CHANGES

src/java/org/apache/hadoop/ipc/Client.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ public void stop() {
939939
/** Make a call, passing <code>param</code>, to the IPC server running at
940940
* <code>address</code>, returning the value. Throws exceptions if there are
941941
* network problems or if the remote code threw an exception.
942-
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation)} instead
942+
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation, int)} instead
943943
*/
944944
@Deprecated
945945
public Writable call(Writable param, InetSocketAddress address)
@@ -952,7 +952,7 @@ public Writable call(Writable param, InetSocketAddress address)
952952
* the value.
953953
* Throws exceptions if there are network problems or if the remote code
954954
* threw an exception.
955-
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation)} instead
955+
* @deprecated Use {@link #call(Writable, InetSocketAddress, Class, UserGroupInformation, int)} instead
956956
*/
957957
@Deprecated
958958
public Writable call(Writable param, InetSocketAddress addr,

src/java/org/apache/hadoop/security/Groups.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public static Groups getUserToGroupsMappingService() {
127127

128128
/**
129129
* Get the groups being used to map user-to-groups.
130-
* @param Configuration
130+
* @param conf
131131
* @return the groups being used to map user-to-groups.
132132
*/
133133
public static Groups getUserToGroupsMappingService(Configuration conf) {

src/java/org/apache/hadoop/security/RefreshUserMappingsProtocol.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public interface RefreshUserMappingsProtocol extends VersionedProtocol {
4343

4444
/**
4545
* Refresh user to group mappings.
46-
* @param conf
4746
* @throws IOException
4847
*/
4948
public void refreshUserToGroupsMappings() throws IOException;

0 commit comments

Comments
 (0)