Skip to content

Commit

Permalink
style: remove UTF8 BOM
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverbooth committed Aug 26, 2023
1 parent 129cbfb commit 9caa0ac
Show file tree
Hide file tree
Showing 281 changed files with 281 additions and 281 deletions.
2 changes: 1 addition & 1 deletion X10D.Hosting/src/Assembly.cs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[assembly: CLSCompliant(true)]
[assembly: CLSCompliant(true)]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;

namespace X10D.Hosting.DependencyInjection;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/1000primes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2
2
3
5
7
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/ArrayTests.AsReadOnly.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Collections;

namespace X10D.Tests.Collections;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/ArrayTests.Clear.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Collections;

namespace X10D.Tests.Collections;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/ArrayTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;

namespace X10D.Tests.Collections;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/BoolListTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Collections;

namespace X10D.Tests.Collections;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/ByteTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Runtime.Intrinsics.X86;
using System.Runtime.Intrinsics.X86;
using NUnit.Framework;
using X10D.Collections;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.ObjectModel;
using System.Collections.ObjectModel;
using NSubstitute;
using NUnit.Framework;
using X10D.Collections;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.ObjectModel;
using System.Collections.ObjectModel;
using NSubstitute;
using NUnit.Framework;
using X10D.Collections;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/CollectionTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;

namespace X10D.Tests.Collections;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/DictionaryTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Collections;

namespace X10D.Tests.Collections;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/EnumerableTests.DisposeAll.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NSubstitute;
using NSubstitute;
using NUnit.Framework;
using X10D.Collections;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NSubstitute;
using NSubstitute;
using NUnit.Framework;
using X10D.Collections;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/EnumerableTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Collections;
using X10D.Core;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/Int16Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if NET5_0_OR_GREATER
#if NET5_0_OR_GREATER
using System.Runtime.Intrinsics.X86;
#endif
using NUnit.Framework;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/Int32Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if NET5_0_OR_GREATER
#if NET5_0_OR_GREATER
using System.Runtime.Intrinsics.X86;
#endif
using NUnit.Framework;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/Int64Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Diagnostics;
using System.Diagnostics;
using System.Globalization;
using NUnit.Framework;
using X10D.Collections;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/ListTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Collections;

namespace X10D.Tests.Collections;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Collections/SpanTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Collections;

namespace X10D.Tests.Collections;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Core/CoreTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Core;

namespace X10D.Tests.Core;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Core/EnumTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Core;

namespace X10D.Tests.Core;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Core/IntrinsicTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if NET6_0_OR_GREATER
#if NET6_0_OR_GREATER
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
using NUnit.Framework;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Core/NullableTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Core;

namespace X10D.Tests.Core;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Core/RandomTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Collections;
using X10D.Core;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Core/SpanTest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if NET5_0_OR_GREATER
#if NET5_0_OR_GREATER
using System.Runtime.Intrinsics.Arm;
using System.Runtime.Intrinsics.X86;
#endif
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/CircleFTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/CircleTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Drawing;

namespace X10D.Tests.Drawing;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/ColorTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/CuboidTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Numerics;
using System.Numerics;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/EllipseFTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using System.Numerics;
using NUnit.Framework;
using X10D.Drawing;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/EllipseTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/Line3DTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using System.Numerics;
using NUnit.Framework;
using X10D.Drawing;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/LineFTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/LineTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Drawing;

namespace X10D.Tests.Drawing;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/PointFTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
#if !NET6_0_OR_GREATER
using X10D.Core;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/PointTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/PolygonFTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using System.Numerics;
using NUnit.Framework;
using X10D.Drawing;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/PolygonTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/PolyhedronTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Numerics;
using System.Numerics;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/RandomTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/SizeTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Drawing;
using System.Drawing;
using NUnit.Framework;
using X10D.Drawing;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Drawing/SphereTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Drawing;

namespace X10D.Tests.Drawing;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Hosting/ServiceCollectionTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using NUnit.Framework;
using X10D.Hosting.DependencyInjection;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/BooleanTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.IO;

namespace X10D.Tests.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/StreamTests.WriteUInt64.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.CodeAnalysis;
using NUnit.Framework;
using X10D.IO;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/TextReaderTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Text;
using System.Text;
using NUnit.Framework;
using X10D.IO;

Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/TextWriterTests.Double.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Globalization;
using System.Globalization;
using System.Text;
using NUnit.Framework;
using X10D.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/TextWriterTests.Int32.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Globalization;
using System.Globalization;
using System.Text;
using NUnit.Framework;
using X10D.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/TextWriterTests.Int64.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Globalization;
using System.Globalization;
using System.Text;
using NUnit.Framework;
using X10D.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/TextWriterTests.Single.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Globalization;
using System.Globalization;
using System.Text;
using NUnit.Framework;
using X10D.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/TextWriterTests.UInt32.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Globalization;
using System.Globalization;
using System.Text;
using NUnit.Framework;
using X10D.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/TextWriterTests.UInt64.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Globalization;
using System.Globalization;
using System.Text;
using NUnit.Framework;
using X10D.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/TextWriterTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Diagnostics;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Text;
using NUnit.Framework;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/UInt16Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.IO;

namespace X10D.Tests.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/UInt32Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.IO;

namespace X10D.Tests.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/IO/UInt64Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.IO;

namespace X10D.Tests.IO;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/ByteTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/DecimalTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/DoubleTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/EnumerableTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/Int16Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/Int32Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/Int64Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/SByteTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/SingleTests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
2 changes: 1 addition & 1 deletion X10D.Tests/src/Linq/UInt16Tests.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NUnit.Framework;
using NUnit.Framework;
using X10D.Linq;

namespace X10D.Tests.Linq;
Expand Down
Loading

0 comments on commit 9caa0ac

Please sign in to comment.