diff options
author | Justin Clarke Casey | 2008-06-01 01:01:16 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-01 01:01:16 +0000 |
commit | 8e1d3386561f263646c10c875aa00af4b3c9f815 (patch) | |
tree | 3fc89893ecdd75b0be7283dd0b4a2b9376b59964 /OpenSim/Region/Application/Application.cs | |
parent | * Updates permission module so that GenericCommunicationPermission returns tr... (diff) | |
download | opensim-SC_OLD-8e1d3386561f263646c10c875aa00af4b3c9f815.zip opensim-SC_OLD-8e1d3386561f263646c10c875aa00af4b3c9f815.tar.gz opensim-SC_OLD-8e1d3386561f263646c10c875aa00af4b3c9f815.tar.bz2 opensim-SC_OLD-8e1d3386561f263646c10c875aa00af4b3c9f815.tar.xz |
* Refactor: Split opensim background server into a separate class
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index 9aa885f..72fdf10 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -82,12 +82,12 @@ namespace OpenSim | |||
82 | 82 | ||
83 | if (background) | 83 | if (background) |
84 | { | 84 | { |
85 | OpenSimMain sim = new OpenSimMain(configSource); | 85 | OpenSimBase sim = new OpenSimBackground(configSource); |
86 | sim.StartUp(); | 86 | sim.StartUp(); |
87 | } | 87 | } |
88 | else | 88 | else |
89 | { | 89 | { |
90 | OpenSimMain sim = new OpenSimMainConsole(configSource); | 90 | OpenSimBase sim = new OpenSim(configSource); |
91 | sim.StartUp(); | 91 | sim.StartUp(); |
92 | 92 | ||
93 | while (true) | 93 | while (true) |