summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-12-26 08:13:47 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-12-26 08:13:47 -0800
commit79e45f41efa4acc686ce64624c3af4b440a5cbb5 (patch)
treea577fa05920ba91214003ddee00038f9df62b280 /src/DotNetOpenAuth.Core/Messaging/HttpRequestInfo.cs
parent06fdacd94eb1a337b6822680336317357885ab48 (diff)
downloadDotNetOpenAuth-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.cs2
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);
}