diff options
author | lbsa71 | 2007-07-01 13:17:27 +0000 |
---|---|---|
committer | lbsa71 | 2007-07-01 13:17:27 +0000 |
commit | 5e805656db1215518a344d6d5364629a4997fd47 (patch) | |
tree | 2d8b50bac8e77f983e3016e969df3535c52fb0d3 /OpenSim/Grid/UserServer | |
parent | * Project files fixed for OGS. (diff) | |
download | opensim-SC_OLD-5e805656db1215518a344d6d5364629a4997fd47.zip opensim-SC_OLD-5e805656db1215518a344d6d5364629a4997fd47.tar.gz opensim-SC_OLD-5e805656db1215518a344d6d5364629a4997fd47.tar.bz2 opensim-SC_OLD-5e805656db1215518a344d6d5364629a4997fd47.tar.xz |
Fixed SimpleApp - aka thankgoditssundaycommit
* Updated SimpleApp with various introduced dependencies
* Extracted ScenePrescence creation in Scene
* removed try-catchall from UserManagerBase (that actually hid a bug)
* Refactored RegionInfo
* handle is calculated
* it will explode upon accessing x,y,ip,port,externalip if not explicitly initialized
* Removed superfluous 'ref' keywords
* Removed a shitload of 'catch Exception e' that causes build warnings
* Lots of small refactorings, renames et c
* Ignored some bins
Diffstat (limited to 'OpenSim/Grid/UserServer')
-rw-r--r-- | OpenSim/Grid/UserServer/Main.cs | 2 | ||||
-rw-r--r-- | OpenSim/Grid/UserServer/UserManager.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index 640f91a..c65bb97 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs | |||
@@ -178,7 +178,7 @@ namespace OpenSim.Grid.UserServer | |||
178 | } | 178 | } |
179 | configData.Commit(); | 179 | configData.Commit(); |
180 | } | 180 | } |
181 | catch (Exception e) | 181 | catch |
182 | { | 182 | { |
183 | 183 | ||
184 | } | 184 | } |
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs index c99cf87..a3e3322 100644 --- a/OpenSim/Grid/UserServer/UserManager.cs +++ b/OpenSim/Grid/UserServer/UserManager.cs | |||
@@ -56,7 +56,7 @@ namespace OpenSim.Grid.UserServer | |||
56 | /// </summary> | 56 | /// </summary> |
57 | /// <param name="response">The existing response</param> | 57 | /// <param name="response">The existing response</param> |
58 | /// <param name="theUser">The user profile</param> | 58 | /// <param name="theUser">The user profile</param> |
59 | public override void CustomiseResponse(ref LoginResponse response, ref UserProfileData theUser) | 59 | public override void CustomiseResponse( LoginResponse response, UserProfileData theUser) |
60 | { | 60 | { |
61 | // Load information from the gridserver | 61 | // Load information from the gridserver |
62 | SimProfile SimInfo = new SimProfile(); | 62 | SimProfile SimInfo = new SimProfile(); |