diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-04 07:56:13 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-04 07:56:13 -0700 |
commit | f8931a0317a30a74ab2341e1215138a6e8070bf3 (patch) | |
tree | 0523ad8175aff87edb90d5a8ef60117ba5a5bb30 /src/DotNetOpenAuth.OAuth2/OAuth2/AccessToken.cs | |
parent | 8d71dea3db632b13986a205b2ba8831514f7b405 (diff) | |
download | DotNetOpenAuth-f8931a0317a30a74ab2341e1215138a6e8070bf3.zip DotNetOpenAuth-f8931a0317a30a74ab2341e1215138a6e8070bf3.tar.gz DotNetOpenAuth-f8931a0317a30a74ab2341e1215138a6e8070bf3.tar.bz2 |
Fixed C# warning.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2/OAuth2/AccessToken.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2/OAuth2/AccessToken.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2/OAuth2/AccessToken.cs b/src/DotNetOpenAuth.OAuth2/OAuth2/AccessToken.cs index 1aeeea7..3a12faa 100644 --- a/src/DotNetOpenAuth.OAuth2/OAuth2/AccessToken.cs +++ b/src/DotNetOpenAuth.OAuth2/OAuth2/AccessToken.cs @@ -45,7 +45,7 @@ namespace DotNetOpenAuth.OAuth2 { /// <param name="username">The username of the account that authorized this token.</param> /// <param name="lifetime">The lifetime for this access token.</param> /// <remarks> - /// The <see cref="ClientIdentifier.ClientIdentifier"/> is left <c>null</c> in this case because this constructor + /// The <see cref="AuthorizationDataBag.ClientIdentifier"/> is left <c>null</c> in this case because this constructor /// is invoked in the case where the client is <em>not</em> authenticated, and therefore no /// trust in the client_id is appropriate. /// </remarks> |