aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-07-29 18:01:12 +0000
committerJustin Clarke Casey2008-07-29 18:01:12 +0000
commitaa59dfb1d2090b5c58683f1facc8223612c3a868 (patch)
tree1d4cd552d9ce4bf3e392b84ae60f5174fa5d43df /OpenSim/Region/Application/OpenSimBase.cs
parent* refactor: move create user console command parsing down to OpenSim.cs from ... (diff)
downloadopensim-SC_OLD-aa59dfb1d2090b5c58683f1facc8223612c3a868.zip
opensim-SC_OLD-aa59dfb1d2090b5c58683f1facc8223612c3a868.tar.gz
opensim-SC_OLD-aa59dfb1d2090b5c58683f1facc8223612c3a868.tar.bz2
opensim-SC_OLD-aa59dfb1d2090b5c58683f1facc8223612c3a868.tar.xz
* minor: route create user through underlying super class method rather than calling communications manager directly
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 8de7c58..aa641e1 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -437,7 +437,7 @@ namespace OpenSim
437 437
438 public LLUUID CreateUser(string tempfirstname, string templastname, string tempPasswd, uint regX, uint regY) 438 public LLUUID CreateUser(string tempfirstname, string templastname, string tempPasswd, uint regX, uint regY)
439 { 439 {
440 return m_commsManager.AddUser(tempfirstname,templastname,tempPasswd,regX,regY); 440 return m_commsManager.AddUser(tempfirstname, templastname, tempPasswd, regX, regY);
441 } 441 }
442 442
443 /// <summary> 443 /// <summary>
@@ -584,7 +584,6 @@ namespace OpenSim
584 storageManager, m_httpServer, 584 storageManager, m_httpServer,
585 m_moduleLoader, m_dumpAssetsToFile, m_physicalPrim, m_see_into_region_from_neighbor, m_config.Source, 585 m_moduleLoader, m_dumpAssetsToFile, m_physicalPrim, m_see_into_region_from_neighbor, m_config.Source,
586 m_version); 586 m_version);
587
588 } 587 }
589 588
590 public void handleRestartRegion(RegionInfo whichRegion) 589 public void handleRestartRegion(RegionInfo whichRegion)
@@ -735,7 +734,3 @@ namespace OpenSim
735 } 734 }
736 } 735 }
737} 736}
738
739
740
741