diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/AssetConfig.cs | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/OpenSim/Framework/AssetConfig.cs b/OpenSim/Framework/AssetConfig.cs index 85dbaa6..dc73f37 100644 --- a/OpenSim/Framework/AssetConfig.cs +++ b/OpenSim/Framework/AssetConfig.cs | |||
@@ -34,16 +34,13 @@ namespace OpenSim.Framework | |||
34 | /// </summary> | 34 | /// </summary> |
35 | public class AssetConfig | 35 | public class AssetConfig |
36 | { | 36 | { |
37 | public string DefaultStartupMsg = String.Empty; | ||
38 | |||
39 | public string DatabaseProvider = String.Empty; | ||
40 | |||
41 | public string DatabaseConnect = String.Empty; | ||
42 | |||
43 | public const uint DefaultHttpPort = 8003; | 37 | public const uint DefaultHttpPort = 8003; |
44 | public uint HttpPort = DefaultHttpPort; | ||
45 | 38 | ||
46 | private ConfigurationMember configMember; | 39 | private ConfigurationMember configMember; |
40 | public string DatabaseConnect = String.Empty; | ||
41 | public string DatabaseProvider = String.Empty; | ||
42 | public string DefaultStartupMsg = String.Empty; | ||
43 | public uint HttpPort = DefaultHttpPort; | ||
47 | 44 | ||
48 | public AssetConfig(string description, string filename) | 45 | public AssetConfig(string description, string filename) |
49 | { | 46 | { |
@@ -89,4 +86,4 @@ namespace OpenSim.Framework | |||
89 | return true; | 86 | return true; |
90 | } | 87 | } |
91 | } | 88 | } |
92 | } | 89 | } \ No newline at end of file |