diff options
author | Adam Frisby | 2008-01-15 02:09:55 +0000 |
---|---|---|
committer | Adam Frisby | 2008-01-15 02:09:55 +0000 |
commit | b25f9f322cdbcde7fd8c043137bf07992e5ef318 (patch) | |
tree | 7c1a5115b2849dfe388b825dd271271d347f9574 /OpenSim/Framework/GridConfig.cs | |
parent | Set svn:eol-style. (diff) | |
download | opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.zip opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.gz opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.bz2 opensim-SC_OLD-b25f9f322cdbcde7fd8c043137bf07992e5ef318.tar.xz |
* Mother of all commits:
* Cleaned up copyright notices in AssemblyInfo.cs's
* Added Copyright headers to a bunch of files missing them
* Replaced several common string instances with a static constant to prevent reallocation of the same strings thousands of times. "" -> String.Empty is the first such candidate.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/GridConfig.cs | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/OpenSim/Framework/GridConfig.cs b/OpenSim/Framework/GridConfig.cs index c07adea..61a53d7 100644 --- a/OpenSim/Framework/GridConfig.cs +++ b/OpenSim/Framework/GridConfig.cs | |||
@@ -26,23 +26,25 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
30 | |||
29 | namespace OpenSim.Framework | 31 | namespace OpenSim.Framework |
30 | { | 32 | { |
31 | public class GridConfig | 33 | public class GridConfig |
32 | { | 34 | { |
33 | public string GridOwner = ""; | 35 | public string GridOwner = String.Empty; |
34 | public string DefaultAssetServer = ""; | 36 | public string DefaultAssetServer = String.Empty; |
35 | public string AssetSendKey = ""; | 37 | public string AssetSendKey = String.Empty; |
36 | public string AssetRecvKey = ""; | 38 | public string AssetRecvKey = String.Empty; |
37 | 39 | ||
38 | public string DefaultUserServer = ""; | 40 | public string DefaultUserServer = String.Empty; |
39 | public string UserSendKey = ""; | 41 | public string UserSendKey = String.Empty; |
40 | public string UserRecvKey = ""; | 42 | public string UserRecvKey = String.Empty; |
41 | 43 | ||
42 | public string SimSendKey = ""; | 44 | public string SimSendKey = String.Empty; |
43 | public string SimRecvKey = ""; | 45 | public string SimRecvKey = String.Empty; |
44 | 46 | ||
45 | public string DatabaseProvider = ""; | 47 | public string DatabaseProvider = String.Empty; |
46 | 48 | ||
47 | 49 | ||
48 | public static uint DefaultHttpPort = 8001; | 50 | public static uint DefaultHttpPort = 8001; |