diff options
author | UbitUmarov | 2017-07-13 04:28:35 +0100 |
---|---|---|
committer | UbitUmarov | 2017-07-13 04:28:35 +0100 |
commit | a17abe7518b301a52307193dbd311e985b237af9 (patch) | |
tree | 89cc7dd95cb264df00534a4aa9931bf83ac5f5bf /OpenSim/Capabilities/LLSD.cs | |
parent | replace the wrong libOMV user modifiable Utils.EnUSCulture by our own no User... (diff) | |
download | opensim-SC-a17abe7518b301a52307193dbd311e985b237af9.zip opensim-SC-a17abe7518b301a52307193dbd311e985b237af9.tar.gz opensim-SC-a17abe7518b301a52307193dbd311e985b237af9.tar.bz2 opensim-SC-a17abe7518b301a52307193dbd311e985b237af9.tar.xz |
typo fix
Diffstat (limited to 'OpenSim/Capabilities/LLSD.cs')
-rw-r--r-- | OpenSim/Capabilities/LLSD.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/LLSD.cs b/OpenSim/Capabilities/LLSD.cs index 8f3cab7..76e439f 100644 --- a/OpenSim/Capabilities/LLSD.cs +++ b/OpenSim/Capabilities/LLSD.cs | |||
@@ -566,7 +566,7 @@ namespace OpenSim.Framework.Capabilities | |||
566 | endPos = FindEnd(llsd, 1); | 566 | endPos = FindEnd(llsd, 1); |
567 | 567 | ||
568 | if (Double.TryParse(llsd.Substring(1, endPos - 1), NumberStyles.Float, | 568 | if (Double.TryParse(llsd.Substring(1, endPos - 1), NumberStyles.Float, |
569 | Culture.FormatProvider.NumberFormat, out value)) | 569 | Culture.NumberFormatInfo, out value)) |
570 | return value; | 570 | return value; |
571 | else | 571 | else |
572 | throw new LLSDParseException("Failed to parse double value type"); | 572 | throw new LLSDParseException("Failed to parse double value type"); |