fixed typo referring to client id as a client secret in code comments.

pull/419/merge
William Kim 2013-07-10 16:53:49 -04:00
parent 2d3f43e3b8
commit 910839e5d9
1 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ public class ClientAPI {
return "jsonErrorView";
}
// if they leave the client secret empty, force it to be generated
// if they leave the client identifier empty, force it to be generated
if (Strings.isNullOrEmpty(client.getClientId())) {
client = clientService.generateClientId(client);
}
@ -214,7 +214,7 @@ public class ClientAPI {
return "jsonErrorView";
}
// if they leave the client secret empty, force it to be generated
// if they leave the client identifier empty, force it to be generated
if (Strings.isNullOrEmpty(client.getClientId())) {
client = clientService.generateClientId(client);
}