mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
Whitespace
This commit is contained in:
parent
ac885e9837
commit
d598d42cff
14 changed files with 174 additions and 183 deletions
|
|
@ -83,7 +83,7 @@ namespace ICD.Common.Utils
|
|||
e.Message);
|
||||
}
|
||||
|
||||
foreach (var type in types)
|
||||
foreach (CType type in types)
|
||||
CacheType(type);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -209,8 +209,6 @@ namespace ICD.Common.Utils.Extensions
|
|||
.SelectMany(s => s.Split(delimitersArray.Skip(1)));
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Removes whitespace from the string.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
#if SIMPLSHARP
|
||||
using Crestron.SimplSharp.CrestronIO;
|
||||
using GC = Crestron.SimplSharp.CrestronEnvironment.GC;
|
||||
|
||||
#else
|
||||
using System.IO;
|
||||
using GC = System.GC;
|
||||
|
|
@ -46,9 +47,7 @@ namespace ICD.Common.Utils.IO
|
|||
return;
|
||||
|
||||
if (disposing)
|
||||
{
|
||||
m_TextWriter.Dispose();
|
||||
}
|
||||
m_Disposed = true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,13 +34,7 @@ namespace ICD.Common.Utils
|
|||
/// Gets the program number.
|
||||
/// </summary>
|
||||
[PublicAPI]
|
||||
public static uint ProgramNumber
|
||||
{
|
||||
get
|
||||
{
|
||||
return InitialParametersClass.ApplicationNumber;
|
||||
}
|
||||
}
|
||||
public static uint ProgramNumber { get { return InitialParametersClass.ApplicationNumber; } }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the compile date of the program.
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
using ICD.Common.Properties;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
#if SIMPLSHARP
|
||||
using Crestron.SimplSharp.CrestronXml;
|
||||
#else
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
using ICD.Common.Properties;
|
||||
using ICD.Common.Utils.EventArguments;
|
||||
using ICD.Common.Utils.Extensions;
|
||||
using ICD.Common.Utils.IO;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue