aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-07-21 23:58:30 +0100
committerJustin Clark-Casey (justincc)2014-07-21 23:58:30 +0100
commit36920adb9684b201ff9020dd825c448fb4e09613 (patch)
treeb3b6d65ea956c2bd128449ce4e56a3460893b636 /OpenSim/Server
parentOn login and first HG entrance to a foreign grid, perform query access checks... (diff)
downloadopensim-SC_OLD-36920adb9684b201ff9020dd825c448fb4e09613.zip
opensim-SC_OLD-36920adb9684b201ff9020dd825c448fb4e09613.tar.gz
opensim-SC_OLD-36920adb9684b201ff9020dd825c448fb4e09613.tar.bz2
opensim-SC_OLD-36920adb9684b201ff9020dd825c448fb4e09613.tar.xz
minor: convert tabs to spaces that got in on recent commit 4a9282e
Diffstat (limited to 'OpenSim/Server')
-rw-r--r--OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs b/OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs
index 6721b08..f8f1d00 100644
--- a/OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs
+++ b/OpenSim/Server/Handlers/Profiles/UserProfilesHandlers.cs
@@ -128,12 +128,12 @@ namespace OpenSim.Server.Handlers
128 OSDMap request = (OSDMap)json["params"]; 128 OSDMap request = (OSDMap)json["params"];
129 UUID classifiedId = new UUID(request["classifiedId"].AsString()); 129 UUID classifiedId = new UUID(request["classifiedId"].AsString());
130 130
131 if(Service.ClassifiedDelete(classifiedId)) 131 if (Service.ClassifiedDelete(classifiedId))
132 return true; 132 return true;
133 133
134 response.Error.Code = ErrorCode.InternalError; 134 response.Error.Code = ErrorCode.InternalError;
135 response.Error.Message = "data error removing record"; 135 response.Error.Message = "data error removing record";
136 return false; 136 return false;
137 } 137 }
138 138
139 public bool ClassifiedInfoRequest(OSDMap json, ref JsonRpcResponse response) 139 public bool ClassifiedInfoRequest(OSDMap json, ref JsonRpcResponse response)