refactor: Tidying, resolving warnings

This commit is contained in:
Chris Cameron
2021-05-20 14:45:49 -04:00
parent 79db70211f
commit f328598f63
3 changed files with 2 additions and 4 deletions

View File

@@ -62,7 +62,7 @@ namespace ICD.Common.Utils.Csv
/// Iterate through all lines in this Csv file
/// </summary>
/// <returns>An array of all data columns in the line</returns>
IEnumerator<string[]> System.Collections.Generic.IEnumerable<string[]>.GetEnumerator()
IEnumerator<string[]> IEnumerable<string[]>.GetEnumerator()
{
return Lines().GetEnumerator();
}

View File

@@ -3,8 +3,6 @@
* License: http://www.apache.org/licenses/LICENSE-2.0
* Home page: https://github.com/tspence/csharp-csv-reader
*/
using System;
using System.Collections.Generic;
namespace ICD.Common.Utils.Csv

View File

@@ -14,10 +14,10 @@
//
// =============================================================================
// ReSharper disable once RedundantUsingDirective
using System;
// ReSharper disable once CheckNamespace
namespace System.Reflection
{
/// <summary>