From 67e12b95ea7b68f4904a7484d77ecfd787d16d0c Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 30 Oct 2007 09:05:31 +0000 Subject: * Optimized usings * Shortened type references * Removed redundant 'this' qualifier --- OpenSim/Framework/General/Culture.cs | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'OpenSim/Framework/General/Culture.cs') diff --git a/OpenSim/Framework/General/Culture.cs b/OpenSim/Framework/General/Culture.cs index 54eae7c..f8cadfe 100644 --- a/OpenSim/Framework/General/Culture.cs +++ b/OpenSim/Framework/General/Culture.cs @@ -27,31 +27,23 @@ */ using System; -using System.Collections.Generic; using System.Globalization; -using System.Text; using System.Threading; namespace OpenSim.Framework { public class Culture { - private static readonly CultureInfo m_cultureInfo = new System.Globalization.CultureInfo("en-US", true); + private static readonly CultureInfo m_cultureInfo = new CultureInfo("en-US", true); public static NumberFormatInfo NumberFormatInfo { - get - { - return m_cultureInfo.NumberFormat; - } + get { return m_cultureInfo.NumberFormat; } } public static IFormatProvider FormatProvider { - get - { - return m_cultureInfo; - } + get { return m_cultureInfo; } } public static void SetCurrentCulture() @@ -59,4 +51,4 @@ namespace OpenSim.Framework Thread.CurrentThread.CurrentCulture = m_cultureInfo; } } -} +} \ No newline at end of file -- cgit v1.1