diff options
author | Justin Clarke Casey | 2008-08-09 20:30:56 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-08-09 20:30:56 +0000 |
commit | f1c897695b76087738cc014b0ad7cf386d2ae448 (patch) | |
tree | d6af473bc1254ffccd8feef76736778431c70fb4 /OpenSim/Framework/AssetConfig.cs | |
parent | * minor: get rid of send and receive keys from inventory server (diff) | |
download | opensim-SC_OLD-f1c897695b76087738cc014b0ad7cf386d2ae448.zip opensim-SC_OLD-f1c897695b76087738cc014b0ad7cf386d2ae448.tar.gz opensim-SC_OLD-f1c897695b76087738cc014b0ad7cf386d2ae448.tar.bz2 opensim-SC_OLD-f1c897695b76087738cc014b0ad7cf386d2ae448.tar.xz |
* minor: Remove unused message from the asset server configuration
Diffstat (limited to 'OpenSim/Framework/AssetConfig.cs')
-rw-r--r-- | OpenSim/Framework/AssetConfig.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/OpenSim/Framework/AssetConfig.cs b/OpenSim/Framework/AssetConfig.cs index dc73f37..9ae98d7 100644 --- a/OpenSim/Framework/AssetConfig.cs +++ b/OpenSim/Framework/AssetConfig.cs | |||
@@ -39,7 +39,6 @@ namespace OpenSim.Framework | |||
39 | private ConfigurationMember configMember; | 39 | private ConfigurationMember configMember; |
40 | public string DatabaseConnect = String.Empty; | 40 | public string DatabaseConnect = String.Empty; |
41 | public string DatabaseProvider = String.Empty; | 41 | public string DatabaseProvider = String.Empty; |
42 | public string DefaultStartupMsg = String.Empty; | ||
43 | public uint HttpPort = DefaultHttpPort; | 42 | public uint HttpPort = DefaultHttpPort; |
44 | 43 | ||
45 | public AssetConfig(string description, string filename) | 44 | public AssetConfig(string description, string filename) |
@@ -51,10 +50,6 @@ namespace OpenSim.Framework | |||
51 | 50 | ||
52 | public void loadConfigurationOptions() | 51 | public void loadConfigurationOptions() |
53 | { | 52 | { |
54 | configMember.addConfigurationOption("default_startup_message", | ||
55 | ConfigurationOption.ConfigurationTypes.TYPE_STRING_NOT_EMPTY, | ||
56 | "Default Startup Message", "Welcome to OGS", false); | ||
57 | |||
58 | configMember.addConfigurationOption("database_provider", ConfigurationOption.ConfigurationTypes.TYPE_STRING, | 53 | configMember.addConfigurationOption("database_provider", ConfigurationOption.ConfigurationTypes.TYPE_STRING, |
59 | "DLL for database provider", "OpenSim.Data.MySQL.dll", false); | 54 | "DLL for database provider", "OpenSim.Data.MySQL.dll", false); |
60 | 55 | ||
@@ -69,9 +64,6 @@ namespace OpenSim.Framework | |||
69 | { | 64 | { |
70 | switch (configuration_key) | 65 | switch (configuration_key) |
71 | { | 66 | { |
72 | case "default_startup_message": | ||
73 | DefaultStartupMsg = (string) configuration_result; | ||
74 | break; | ||
75 | case "database_provider": | 67 | case "database_provider": |
76 | DatabaseProvider = (string) configuration_result; | 68 | DatabaseProvider = (string) configuration_result; |
77 | break; | 69 | break; |