diff options
author | Justin Clarke Casey | 2008-10-03 15:11:29 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-03 15:11:29 +0000 |
commit | 70124a3213d013098507b08ed7f9301da6845882 (patch) | |
tree | 6eb458084e0496be30be166a6da91f50cfb7b1d6 /OpenSim/Grid/InventoryServer | |
parent | This changeset changes the way chat from client is routed: (diff) | |
download | opensim-SC_OLD-70124a3213d013098507b08ed7f9301da6845882.zip opensim-SC_OLD-70124a3213d013098507b08ed7f9301da6845882.tar.gz opensim-SC_OLD-70124a3213d013098507b08ed7f9301da6845882.tar.bz2 opensim-SC_OLD-70124a3213d013098507b08ed7f9301da6845882.tar.xz |
* refactor: make startup a template method
Diffstat (limited to 'OpenSim/Grid/InventoryServer')
-rw-r--r-- | OpenSim/Grid/InventoryServer/Main.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Grid/InventoryServer/Main.cs b/OpenSim/Grid/InventoryServer/Main.cs index 3b990e7..8be6a23 100644 --- a/OpenSim/Grid/InventoryServer/Main.cs +++ b/OpenSim/Grid/InventoryServer/Main.cs | |||
@@ -62,10 +62,8 @@ namespace OpenSim.Grid.InventoryServer | |||
62 | MainConsole.Instance = m_console; | 62 | MainConsole.Instance = m_console; |
63 | } | 63 | } |
64 | 64 | ||
65 | public override void Startup() | 65 | protected override void StartupSpecific() |
66 | { | 66 | { |
67 | base.Startup(); | ||
68 | |||
69 | InventoryConfig config = new InventoryConfig(LogName, (Path.Combine(Util.configDir(), "InventoryServer_Config.xml"))); | 67 | InventoryConfig config = new InventoryConfig(LogName, (Path.Combine(Util.configDir(), "InventoryServer_Config.xml"))); |
70 | 68 | ||
71 | m_inventoryService = new GridInventoryService(config.UserServerURL); | 69 | m_inventoryService = new GridInventoryService(config.UserServerURL); |