diff options
author | James Moger <james.moger@gitblit.com> | 2012-04-24 22:40:23 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-04-24 22:40:23 -0400 |
commit | 6e15cb51ddcf24c725633c4ab1ff71959b036eb4 (patch) | |
tree | bc5e9401afca422aac1132478d1253a69c30be5c /src | |
parent | 049a68bfee34d99be8a4d4d7124283862625641a (diff) | |
download | gitblit-6e15cb51ddcf24c725633c4ab1ff71959b036eb4.tar.gz gitblit-6e15cb51ddcf24c725633c4ab1ff71959b036eb4.zip |
Documentation
Diffstat (limited to 'src')
-rw-r--r-- | src/com/gitblit/LdapUserService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/gitblit/LdapUserService.java b/src/com/gitblit/LdapUserService.java index 4634668b..ec84c956 100644 --- a/src/com/gitblit/LdapUserService.java +++ b/src/com/gitblit/LdapUserService.java @@ -219,14 +219,14 @@ public class LdapUserService extends GitblitUserService { private TeamModel createTeamFromLdap(SearchResultEntry teamEntry) {
TeamModel answer = new TeamModel(teamEntry.getAttributeValue("cn"));
- // If attributes other than team name ever from from LDAP, this is where to get them
+ // potentially retrieve other attributes here in the future
return answer;
}
private UserModel createUserFromLdap(String simpleUserName, SearchResultEntry userEntry) {
UserModel answer = new UserModel(simpleUserName);
- //If attributes other than user name ever from from LDAP, this is where to get them
+ // potentially retrieve other attributes here in the future
return answer;
}
|