minor: convert tabs to spaces that got in on recent commit 4a9282e

0.8.0.3
Justin Clark-Casey (justincc) 2014-07-21 23:58:30 +01:00 committed by Justin Clark-Casey
parent 92e2478059
commit fdb0c7389e
1 changed files with 5 additions and 5 deletions

View File

@ -128,12 +128,12 @@ namespace OpenSim.Server.Handlers
OSDMap request = (OSDMap)json["params"];
UUID classifiedId = new UUID(request["classifiedId"].AsString());
if(Service.ClassifiedDelete(classifiedId))
return true;
if (Service.ClassifiedDelete(classifiedId))
return true;
response.Error.Code = ErrorCode.InternalError;
response.Error.Message = "data error removing record";
return false;
response.Error.Code = ErrorCode.InternalError;
response.Error.Message = "data error removing record";
return false;
}
public bool ClassifiedInfoRequest(OSDMap json, ref JsonRpcResponse response)