diff options
author | Justin Clarke Casey | 2008-08-09 21:01:33 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-08-09 21:01:33 +0000 |
commit | 6630706dd9507c216a88de66dca8d4439c03ac49 (patch) | |
tree | 86e977e38c43bebc8f7fc6450f2f03123554dd5c /OpenSim/Framework/GridConfig.cs | |
parent | * minor: oops, forgot the code that actually ends up eliminating the unused c... (diff) | |
download | opensim-SC_OLD-6630706dd9507c216a88de66dca8d4439c03ac49.zip opensim-SC_OLD-6630706dd9507c216a88de66dca8d4439c03ac49.tar.gz opensim-SC_OLD-6630706dd9507c216a88de66dca8d4439c03ac49.tar.bz2 opensim-SC_OLD-6630706dd9507c216a88de66dca8d4439c03ac49.tar.xz |
* Reinstate grid receive and send keys to user server config
* Looks like these weren't so unused after all - oops!
* Remove message from grid server config
Diffstat (limited to 'OpenSim/Framework/GridConfig.cs')
-rw-r--r-- | OpenSim/Framework/GridConfig.cs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/OpenSim/Framework/GridConfig.cs b/OpenSim/Framework/GridConfig.cs index e405b26..889f345 100644 --- a/OpenSim/Framework/GridConfig.cs +++ b/OpenSim/Framework/GridConfig.cs | |||
@@ -42,7 +42,6 @@ namespace OpenSim.Framework | |||
42 | public string DatabaseConnect = String.Empty; | 42 | public string DatabaseConnect = String.Empty; |
43 | public string DefaultAssetServer = String.Empty; | 43 | public string DefaultAssetServer = String.Empty; |
44 | public string DefaultUserServer = String.Empty; | 44 | public string DefaultUserServer = String.Empty; |
45 | public string GridOwner = String.Empty; | ||
46 | public uint HttpPort = DefaultHttpPort; | 45 | public uint HttpPort = DefaultHttpPort; |
47 | public string SimRecvKey = String.Empty; | 46 | public string SimRecvKey = String.Empty; |
48 | public string SimSendKey = String.Empty; | 47 | public string SimSendKey = String.Empty; |
@@ -58,9 +57,6 @@ namespace OpenSim.Framework | |||
58 | 57 | ||
59 | public void loadConfigurationOptions() | 58 | public void loadConfigurationOptions() |
60 | { | 59 | { |
61 | configMember.addConfigurationOption("grid_owner", | ||
62 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, | ||
63 | "OGS Grid Owner", "OGS development team", false); | ||
64 | configMember.addConfigurationOption("default_asset_server", | 60 | configMember.addConfigurationOption("default_asset_server", |
65 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, | 61 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, |
66 | "Default Asset Server URI", | 62 | "Default Asset Server URI", |
@@ -101,9 +97,6 @@ namespace OpenSim.Framework | |||
101 | { | 97 | { |
102 | switch (configuration_key) | 98 | switch (configuration_key) |
103 | { | 99 | { |
104 | case "grid_owner": | ||
105 | GridOwner = (string) configuration_result; | ||
106 | break; | ||
107 | case "default_asset_server": | 100 | case "default_asset_server": |
108 | DefaultAssetServer = (string) configuration_result; | 101 | DefaultAssetServer = (string) configuration_result; |
109 | break; | 102 | break; |