HADOOP-14635. Javadoc correction for AccessControlList#buildACL. Contributed by Yeliang Cang.

This commit is contained in:
Akira Ajisaka 2019-04-08 15:18:45 +09:00
parent fc05b0e70e
commit ab645b3caa
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 3 additions and 3 deletions

View File

@ -97,10 +97,10 @@ public class AccessControlList implements Writable {
}
/**
* Build ACL from the given two Strings.
* The Strings contain comma separated values.
* Build ACL from the given array of strings.
* The strings contain comma separated values.
*
* @param aclString build ACL from array of Strings
* @param userGroupStrings build ACL from array of Strings
*/
private void buildACL(String[] userGroupStrings) {
users = new HashSet<String>();