diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-10 11:41:47 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-10 11:41:47 -0800 |
commit | abd2769d72e52def7544ac080cee4758bfc8e592 (patch) | |
tree | 34c22abbe6260d387b1a7c851d286c5b50fcbe33 /src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs | |
parent | 5bd70111d5740844656aaed12206c9f28dd25923 (diff) | |
download | DotNetOpenAuth-abd2769d72e52def7544ac080cee4758bfc8e592.zip DotNetOpenAuth-abd2769d72e52def7544ac080cee4758bfc8e592.tar.gz DotNetOpenAuth-abd2769d72e52def7544ac080cee4758bfc8e592.tar.bz2 |
StyleCop fixes on AspNet project.
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs index 6343cb0..a7ff79e 100644 --- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs +++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs @@ -21,12 +21,10 @@ namespace DotNetOpenAuth.AspNet.Clients { /// <param name="stream"> /// The stream. /// </param> - /// <typeparam name="T"> - /// </typeparam> + /// <typeparam name="T">The type of the value to deserialize.</typeparam> /// <returns> + /// The deserialized value. /// </returns> - /// <exception cref="ArgumentNullException"> - /// </exception> public static T Deserialize<T>(Stream stream) where T : class { Requires.NotNull(stream, "stream"); |