diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-12-26 08:13:47 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-12-26 08:13:47 -0800 |
commit | 79e45f41efa4acc686ce64624c3af4b440a5cbb5 (patch) | |
tree | a577fa05920ba91214003ddee00038f9df62b280 /src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs | |
parent | 06fdacd94eb1a337b6822680336317357885ab48 (diff) | |
download | DotNetOpenAuth-79e45f41efa4acc686ce64624c3af4b440a5cbb5.zip DotNetOpenAuth-79e45f41efa4acc686ce64624c3af4b440a5cbb5.tar.gz DotNetOpenAuth-79e45f41efa4acc686ce64624c3af4b440a5cbb5.tar.bz2 |
StyleCop fixes.
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs b/src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs index d0f6f63..75da833 100644 --- a/src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs +++ b/src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs @@ -80,7 +80,7 @@ namespace DotNetOpenAuth.Messaging { this.form = new NameValueCollection(); this.queryString = HttpUtility.ParseQueryString(requestUri.Query); this.serverVariables = new NameValueCollection(); - this.cookies = new HttpCookieCollection(); + this.cookies = new HttpCookieCollection(); Reporting.RecordRequestStatistics(this); } |