diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-01 13:05:28 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-01 13:05:28 -0700 |
commit | f53852a3e8352382b15bafffa73fc502b4261bcc (patch) | |
tree | bc8c6e1d19434c15331a716526930fd76ed165a2 | |
parent | b5bc1a4cc5b4f0729249ebdf9d659ec387f30766 (diff) | |
download | DotNetOpenAuth-f53852a3e8352382b15bafffa73fc502b4261bcc.zip DotNetOpenAuth-f53852a3e8352382b15bafffa73fc502b4261bcc.tar.gz DotNetOpenAuth-f53852a3e8352382b15bafffa73fc502b4261bcc.tar.bz2 |
Avoided C# warning message.
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs b/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs index 8b1988c..b4bc689 100644 --- a/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs +++ b/src/DotNetOpenAuth.OAuth2.ClientAuthorization/OAuth2/IClientDescription.cs @@ -8,6 +8,7 @@ namespace DotNetOpenAuth.OAuth2 { using System; using System.Collections.Generic; using System.Diagnostics.Contracts; + using DotNetOpenAuth.Messaging; /// <summary> /// A description of a client from an Authorization Server's point of view. |