diff options
author | Adam Frisby | 2008-05-01 16:23:53 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-01 16:23:53 +0000 |
commit | 01f31fd933bbaec246d2fef5756b7d83be7980e0 (patch) | |
tree | 45ce7727e83238bf492924bea3ff5f0b6c82acbc /OpenSim/Framework/Communications/RestClient.cs | |
parent | * In ur code. Making it static. (diff) | |
download | opensim-SC_OLD-01f31fd933bbaec246d2fef5756b7d83be7980e0.zip opensim-SC_OLD-01f31fd933bbaec246d2fef5756b7d83be7980e0.tar.gz opensim-SC_OLD-01f31fd933bbaec246d2fef5756b7d83be7980e0.tar.bz2 opensim-SC_OLD-01f31fd933bbaec246d2fef5756b7d83be7980e0.tar.xz |
* Breaking all the code, breaking all the code..!
* Made a bunch more members static, removed some dead code, general cleaning.
Diffstat (limited to 'OpenSim/Framework/Communications/RestClient.cs')
-rw-r--r-- | OpenSim/Framework/Communications/RestClient.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/RestClient.cs b/OpenSim/Framework/Communications/RestClient.cs index 91284e8..b0b7b1e 100644 --- a/OpenSim/Framework/Communications/RestClient.cs +++ b/OpenSim/Framework/Communications/RestClient.cs | |||
@@ -164,7 +164,7 @@ namespace OpenSim.Framework.Communications | |||
164 | /// </summary> | 164 | /// </summary> |
165 | /// <param name="s">string to be examined</param> | 165 | /// <param name="s">string to be examined</param> |
166 | /// <returns>true if slash is present</returns> | 166 | /// <returns>true if slash is present</returns> |
167 | private bool isSlashed(string s) | 167 | private static bool isSlashed(string s) |
168 | { | 168 | { |
169 | return s.Substring(s.Length - 1, 1) == "/"; | 169 | return s.Substring(s.Length - 1, 1) == "/"; |
170 | } | 170 | } |
@@ -196,7 +196,7 @@ namespace OpenSim.Framework.Communications | |||
196 | sb.Append("&"); | 196 | sb.Append("&"); |
197 | 197 | ||
198 | sb.Append(kv.Key); | 198 | sb.Append(kv.Key); |
199 | if (kv.Value != null && kv.Value.Length != 0) | 199 | if (!string.IsNullOrEmpty(kv.Value)) |
200 | { | 200 | { |
201 | sb.Append("="); | 201 | sb.Append("="); |
202 | sb.Append(kv.Value); | 202 | sb.Append(kv.Value); |