aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-19 07:03:39 +0000
committerMelanie Thielker2008-11-19 07:03:39 +0000
commit778d83d9f0c9b6b0e1dfd4f3bf1228867be7573a (patch)
tree4cc234b32cbcacf798a1c62732964b73edaff73a
parentRe-add prebuild.xml (r7381) (diff)
downloadopensim-SC_OLD-778d83d9f0c9b6b0e1dfd4f3bf1228867be7573a.zip
opensim-SC_OLD-778d83d9f0c9b6b0e1dfd4f3bf1228867be7573a.tar.gz
opensim-SC_OLD-778d83d9f0c9b6b0e1dfd4f3bf1228867be7573a.tar.bz2
opensim-SC_OLD-778d83d9f0c9b6b0e1dfd4f3bf1228867be7573a.tar.xz
Adjust to the Helpers->Utils rename
-rw-r--r--OpenSim/Framework/Communications/Capabilities/LLSD.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/LLSD.cs b/OpenSim/Framework/Communications/Capabilities/LLSD.cs
index 44c4a05..e754256 100644
--- a/OpenSim/Framework/Communications/Capabilities/LLSD.cs
+++ b/OpenSim/Framework/Communications/Capabilities/LLSD.cs
@@ -561,7 +561,7 @@ namespace OpenSim.Framework.Communications.Capabilities
561 endPos = FindEnd(llsd, 1); 561 endPos = FindEnd(llsd, 1);
562 562
563 if (Double.TryParse(llsd.Substring(1, endPos - 1), NumberStyles.Float, 563 if (Double.TryParse(llsd.Substring(1, endPos - 1), NumberStyles.Float,
564 Helpers.EnUsCulture.NumberFormat, out value)) 564 Utils.EnUsCulture.NumberFormat, out value))
565 return value; 565 return value;
566 else 566 else
567 throw new LLSDParseException("Failed to parse double value type"); 567 throw new LLSDParseException("Failed to parse double value type");