From 6ef9d4da901a346c232458317cca6268da888e2e Mon Sep 17 00:00:00 2001
From: Jeff Ames
Date: Mon, 18 Aug 2008 00:39:10 +0000
Subject: Formatting cleanup.
---
OpenSim/Framework/Servers/OSHttpHandler.cs | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
(limited to 'OpenSim/Framework/Servers/OSHttpHandler.cs')
diff --git a/OpenSim/Framework/Servers/OSHttpHandler.cs b/OpenSim/Framework/Servers/OSHttpHandler.cs
index 66fff3e..838f29a 100644
--- a/OpenSim/Framework/Servers/OSHttpHandler.cs
+++ b/OpenSim/Framework/Servers/OSHttpHandler.cs
@@ -72,21 +72,21 @@ namespace OpenSim.Framework.Servers
/// Regular expression used to match against method of
/// the incoming HTTP request. If you want to match any string
/// either use '.*' or null. To match on the empty string use
- /// '^$'.
+ /// '^$'.
///
public virtual Regex Method
{
get { return _method; }
}
protected Regex _method;
-
+
///
/// Regular expression used to match against path of the
/// incoming HTTP request. If you want to match any string
/// either use '.*' or null. To match on the emtpy string use
/// '^$'.
///
- public virtual Regex Path
+ public virtual Regex Path
{
get { return _path; }
}
@@ -97,7 +97,7 @@ namespace OpenSim.Framework.Servers
/// allowing us to match on URI query fields.
///
public virtual Dictionary Query
- {
+ {
get { return _query; }
}
protected Dictionary _query;
@@ -107,7 +107,7 @@ namespace OpenSim.Framework.Servers
/// allowing us to match on HTTP header fields.
///
public virtual Dictionary Headers
- {
+ {
get { return _headers; }
}
protected Dictionary _headers;
@@ -137,7 +137,7 @@ namespace OpenSim.Framework.Servers
/// null or content type
/// regex
/// null or IP address regex
- public OSHttpHandler(Regex method, Regex path, Dictionary query,
+ public OSHttpHandler(Regex method, Regex path, Dictionary query,
Dictionary headers, Regex contentType, Regex whitelist)
{
_method = method;
@@ -155,7 +155,7 @@ namespace OpenSim.Framework.Servers
///
/// Process an incoming OSHttpRequest that matched our
- /// requirements.
+ /// requirements.
///
///
/// OSHttpHandlerResult.Pass if we are after all not
@@ -180,4 +180,4 @@ namespace OpenSim.Framework.Servers
return sw.ToString();
}
}
-}
\ No newline at end of file
+}
--
cgit v1.1