diff options
author | lbsa71 | 2007-10-30 09:05:31 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-30 09:05:31 +0000 |
commit | 67e12b95ea7b68f4904a7484d77ecfd787d16d0c (patch) | |
tree | 20b00d24c8a7617017960432ec044852e3ad5fa9 /OpenSim/Framework/Communications/CAPSService.cs | |
parent | * Deleted .user file (diff) | |
download | opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.zip opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.gz opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.bz2 opensim-SC_OLD-67e12b95ea7b68f4904a7484d77ecfd787d16d0c.tar.xz |
* Optimized usings
* Shortened type references
* Removed redundant 'this' qualifier
Diffstat (limited to 'OpenSim/Framework/Communications/CAPSService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/CAPSService.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/CAPSService.cs b/OpenSim/Framework/Communications/CAPSService.cs index b60ef02..40f4006 100644 --- a/OpenSim/Framework/Communications/CAPSService.cs +++ b/OpenSim/Framework/Communications/CAPSService.cs | |||
@@ -37,17 +37,17 @@ namespace OpenSim.Framework.Communications | |||
37 | public CAPSService(BaseHttpServer httpServer) | 37 | public CAPSService(BaseHttpServer httpServer) |
38 | { | 38 | { |
39 | m_server = httpServer; | 39 | m_server = httpServer; |
40 | this.AddCapsSeedHandler("/CapsSeed/", CapsRequest); | 40 | AddCapsSeedHandler("/CapsSeed/", CapsRequest); |
41 | } | 41 | } |
42 | 42 | ||
43 | private void AddCapsSeedHandler(string path, RestMethod restMethod) | 43 | private void AddCapsSeedHandler(string path, RestMethod restMethod) |
44 | { | 44 | { |
45 | m_server.AddStreamHandler(new RestStreamHandler("POST", path, restMethod)); | 45 | m_server.AddStreamHandler(new RestStreamHandler("POST", path, restMethod)); |
46 | } | 46 | } |
47 | 47 | ||
48 | public string CapsRequest(string request, string path, string param) | 48 | public string CapsRequest(string request, string path, string param) |
49 | { | 49 | { |
50 | System.Console.WriteLine("new caps request " + request +" from path "+ path); | 50 | System.Console.WriteLine("new caps request " + request + " from path " + path); |
51 | return ""; | 51 | return ""; |
52 | } | 52 | } |
53 | } | 53 | } |