From 1294da6a930edb86bfa4d3fb120b5a88b65b4aab Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 15 Oct 2007 07:01:22 +0000 Subject: * Applied Chillken patch #418 : newline-r2092.patch ; failed on assemblyinfo tho. Thanxs Chillken! --- OpenSim/Framework/General/Culture.cs | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/General/Culture.cs b/OpenSim/Framework/General/Culture.cs index 4d175f7..b6c68ed 100644 --- a/OpenSim/Framework/General/Culture.cs +++ b/OpenSim/Framework/General/Culture.cs @@ -8,24 +8,24 @@ namespace OpenSim.Framework { public class Culture { - private static readonly CultureInfo m_cultureInfo = new System.Globalization.CultureInfo("en-US", true); - - public static NumberFormatInfo NumberFormatInfo - { - get - { - return m_cultureInfo.NumberFormat; - } - } - - public static IFormatProvider FormatProvider - { - get - { - return m_cultureInfo; - } - } - + private static readonly CultureInfo m_cultureInfo = new System.Globalization.CultureInfo("en-US", true); + + public static NumberFormatInfo NumberFormatInfo + { + get + { + return m_cultureInfo.NumberFormat; + } + } + + public static IFormatProvider FormatProvider + { + get + { + return m_cultureInfo; + } + } + public static void SetCurrentCulture() { Thread.CurrentThread.CurrentCulture = m_cultureInfo; -- cgit v1.1