cleanup: fixing CamelCase issue with RestDeserialiseHandler.

This commit is contained in:
Dr Scofield
2008-07-15 13:33:31 +00:00
parent 8b933e53c0
commit 00c15eb0c4
2 changed files with 11 additions and 11 deletions

View File

@@ -34,12 +34,12 @@ namespace OpenSim.Framework.Servers
{
public delegate TResponse RestDeserialiseMethod<TRequest, TResponse>(TRequest request);
public class RestDeserialisehandler<TRequest, TResponse> : BaseRequestHandler, IStreamHandler
public class RestDeserialiseHandler<TRequest, TResponse> : BaseRequestHandler, IStreamHandler
where TRequest : new()
{
private RestDeserialiseMethod<TRequest, TResponse> m_method;
public RestDeserialisehandler(string httpMethod, string path, RestDeserialiseMethod<TRequest, TResponse> method)
public RestDeserialiseHandler(string httpMethod, string path, RestDeserialiseMethod<TRequest, TResponse> method)
: base(httpMethod, path)
{
m_method = method;