From ad0c0a637b666adc0380d6f430c6483285ab2e10 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Wed, 12 Jul 2017 10:20:01 -0400 Subject: [PATCH] Tidying --- ICD.Common.Utils/AttributeUtils.cs | 10 +++++----- ICD.Common.Utils/Attributes/Rpc/RpcAttribute.cs | 8 ++++---- ICD.Common.Utils/EnumUtils.cs | 4 ++-- ICD.Common.Utils/IO/IcdFile.cs | 6 +++--- ICD.Common.Utils/IcdConsole.cs | 2 +- ICD.Common.Utils/IcdErrorLog.cs | 2 +- ICD.Common.Utils/ProgramUtils.cs | 6 +++--- ICD.Common.Utils/Timers/SafeTimer.cs | 4 ++-- ICD.Common.Utils/Xml/XmlReaderExtensions.cs | 4 ++-- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/ICD.Common.Utils/AttributeUtils.cs b/ICD.Common.Utils/AttributeUtils.cs index 85492ab..1201088 100644 --- a/ICD.Common.Utils/AttributeUtils.cs +++ b/ICD.Common.Utils/AttributeUtils.cs @@ -1,16 +1,16 @@ using System; using System.Collections.Generic; using System.Linq; -#if SIMPLSHARP -using Crestron.SimplSharp.Reflection; -#else -using System.Reflection; -#endif using ICD.Common.Properties; using ICD.Common.Services; using ICD.Common.Services.Logging; using ICD.Common.Utils.Collections; using ICD.Common.Utils.Extensions; +#if SIMPLSHARP +using Crestron.SimplSharp.Reflection; +#else +using System.Reflection; +#endif namespace ICD.Common.Utils { diff --git a/ICD.Common.Utils/Attributes/Rpc/RpcAttribute.cs b/ICD.Common.Utils/Attributes/Rpc/RpcAttribute.cs index c3ce074..eaeb64a 100644 --- a/ICD.Common.Utils/Attributes/Rpc/RpcAttribute.cs +++ b/ICD.Common.Utils/Attributes/Rpc/RpcAttribute.cs @@ -1,15 +1,15 @@ using System; using System.Collections.Generic; using System.Linq; +using ICD.Common.Properties; +using ICD.Common.Utils; +using ICD.Common.Utils.Collections; +using ICD.Common.Utils.Extensions; #if SIMPLSHARP using Crestron.SimplSharp.Reflection; #else using System.Reflection; #endif -using ICD.Common.Properties; -using ICD.Common.Utils; -using ICD.Common.Utils.Collections; -using ICD.Common.Utils.Extensions; namespace ICD.Common.Attributes.Rpc { diff --git a/ICD.Common.Utils/EnumUtils.cs b/ICD.Common.Utils/EnumUtils.cs index 8cbf5cf..4ef525c 100644 --- a/ICD.Common.Utils/EnumUtils.cs +++ b/ICD.Common.Utils/EnumUtils.cs @@ -1,14 +1,14 @@ using System; using System.Collections.Generic; using System.Linq; +using ICD.Common.Utils.Collections; +using ICD.Common.Utils.Extensions; #if SIMPLSHARP using System.Globalization; using Crestron.SimplSharp.Reflection; #else using System.Reflection; #endif -using ICD.Common.Utils.Collections; -using ICD.Common.Utils.Extensions; namespace ICD.Common.Utils { diff --git a/ICD.Common.Utils/IO/IcdFile.cs b/ICD.Common.Utils/IO/IcdFile.cs index 36ceca7..11830a9 100644 --- a/ICD.Common.Utils/IO/IcdFile.cs +++ b/ICD.Common.Utils/IO/IcdFile.cs @@ -1,11 +1,11 @@ -using ICD.Common.Properties; +using System; +using System.Text; +using ICD.Common.Properties; #if SIMPLSHARP using Crestron.SimplSharp.CrestronIO; #else using System.IO; #endif -using System; -using System.Text; namespace ICD.Common.Utils.IO { diff --git a/ICD.Common.Utils/IcdConsole.cs b/ICD.Common.Utils/IcdConsole.cs index 95f3ea0..dc065ce 100644 --- a/ICD.Common.Utils/IcdConsole.cs +++ b/ICD.Common.Utils/IcdConsole.cs @@ -1,8 +1,8 @@ using System; +using ICD.Common.Properties; #if SIMPLSHARP using Crestron.SimplSharp; #endif -using ICD.Common.Properties; namespace ICD.Common.Utils { diff --git a/ICD.Common.Utils/IcdErrorLog.cs b/ICD.Common.Utils/IcdErrorLog.cs index e3000df..7786502 100644 --- a/ICD.Common.Utils/IcdErrorLog.cs +++ b/ICD.Common.Utils/IcdErrorLog.cs @@ -1,8 +1,8 @@ using System; +using ICD.Common.Properties; #if SIMPLSHARP using Crestron.SimplSharp; #endif -using ICD.Common.Properties; namespace ICD.Common.Utils { diff --git a/ICD.Common.Utils/ProgramUtils.cs b/ICD.Common.Utils/ProgramUtils.cs index cb97e73..b065bd5 100644 --- a/ICD.Common.Utils/ProgramUtils.cs +++ b/ICD.Common.Utils/ProgramUtils.cs @@ -1,13 +1,13 @@ using System; using System.Collections.Generic; using System.Linq; -#if SIMPLSHARP -using Crestron.SimplSharp; -#endif using ICD.Common.Properties; using ICD.Common.Services; using ICD.Common.Services.Logging; using ICD.Common.Utils.Extensions; +#if SIMPLSHARP +using Crestron.SimplSharp; +#endif namespace ICD.Common.Utils { diff --git a/ICD.Common.Utils/Timers/SafeTimer.cs b/ICD.Common.Utils/Timers/SafeTimer.cs index 2477264..1d66556 100644 --- a/ICD.Common.Utils/Timers/SafeTimer.cs +++ b/ICD.Common.Utils/Timers/SafeTimer.cs @@ -1,11 +1,11 @@ using System; +using ICD.Common.Services; +using ICD.Common.Services.Logging; #if SIMPLSHARP using Crestron.SimplSharp; #else using System.Threading; #endif -using ICD.Common.Services; -using ICD.Common.Services.Logging; namespace ICD.Common.Utils.Timers { diff --git a/ICD.Common.Utils/Xml/XmlReaderExtensions.cs b/ICD.Common.Utils/Xml/XmlReaderExtensions.cs index 39fe7c0..2586b36 100644 --- a/ICD.Common.Utils/Xml/XmlReaderExtensions.cs +++ b/ICD.Common.Utils/Xml/XmlReaderExtensions.cs @@ -1,13 +1,13 @@ using System; using System.Collections.Generic; using System.Linq; +using ICD.Common.EventArguments; +using ICD.Common.Properties; #if SIMPLSHARP using Crestron.SimplSharp.CrestronXml; #else using System.Xml; #endif -using ICD.Common.EventArguments; -using ICD.Common.Properties; namespace ICD.Common.Utils.Xml {