diff --git a/OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs b/OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs index 6721b08025..f8f1d00cf2 100644 --- a/OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs +++ b/OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs @@ -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)