From c8acc1f93dc9a459b514cedd26d29e4cba4f9a2c Mon Sep 17 00:00:00 2001 From: Alexander Luzgarev Date: Mon, 14 Apr 2025 20:22:48 +0200 Subject: [PATCH] Remove BOM from .cs files --- MatFileHandler.Tests/ArrayHandlingTests.cs | 2 +- .../ChecksumCalculatingStreamTests.cs | 2 +- MatFileHandler.Tests/CommonData.cs | 2 +- MatFileHandler.Tests/ComplexOfTests.cs | 2 +- MatFileHandler.Tests/MatFileReaderTests.cs | 2 +- MatFileHandler.Tests/MatFileReadingMethod.cs | 2 +- MatFileHandler.Tests/MatFileWriterTests.cs | 2 +- MatFileHandler.Tests/MatFileWritingMethod.cs | 2 +- .../PartialUnseekableReadStream.cs | 2 +- MatFileHandler.Tests/UnseekableWriteStream.cs | 2 +- MatFileHandler/ArrayFlags.cs | 2 +- MatFileHandler/ChecksumCalculatingStream.cs | 184 +++++++++--------- MatFileHandler/ComplexOf.cs | 2 +- MatFileHandler/CompressionUsage.cs | 2 +- MatFileHandler/DataBuilder.cs | 2 +- MatFileHandler/DataElement.cs | 2 +- MatFileHandler/DataElementConverter.cs | 2 +- MatFileHandler/DataElementReader.cs | 2 +- MatFileHandler/DataExtraction.cs | 2 +- MatFileHandler/DataTypeExtensions.cs | 2 +- MatFileHandler/DatetimeAdapter.cs | 2 +- MatFileHandler/DimensionCalculator.cs | 2 +- MatFileHandler/DurationAdapter.cs | 2 +- MatFileHandler/EnumAdapter.cs | 2 +- MatFileHandler/FakeWriter.cs | 2 +- MatFileHandler/HandlerException.cs | 2 +- MatFileHandler/Header.cs | 2 +- MatFileHandler/IArray.cs | 2 +- MatFileHandler/IArrayOf.cs | 2 +- MatFileHandler/ICellArray.cs | 2 +- MatFileHandler/ICharArray.cs | 2 +- MatFileHandler/IMatFile.cs | 2 +- MatFileHandler/IMatObject.cs | 2 +- MatFileHandler/ISparseArrayOf.cs | 2 +- MatFileHandler/IStructureArray.cs | 2 +- MatFileHandler/IVariable.cs | 2 +- MatFileHandler/MatArray.cs | 2 +- MatFileHandler/MatCellArray.cs | 2 +- MatFileHandler/MatCharArrayOf.cs | 2 +- MatFileHandler/MatFile.cs | 2 +- MatFileHandler/MatFileReader.cs | 2 +- MatFileHandler/MatFileWriter.cs | 2 +- MatFileHandler/MatFileWriterOptions.cs | 2 +- MatFileHandler/MatNumericalArrayOf.cs | 2 +- MatFileHandler/MatSparseArrayOf.cs | 2 +- MatFileHandler/MatStructureArray.cs | 2 +- MatFileHandler/MatVariable.cs | 2 +- MatFileHandler/MiNum.cs | 2 +- MatFileHandler/Opaque.cs | 2 +- MatFileHandler/OpaqueLink.cs | 2 +- MatFileHandler/PositionTrackingStream.cs | 2 +- MatFileHandler/RawVariable.cs | 2 +- MatFileHandler/StringAdapter.cs | 2 +- MatFileHandler/Substream.cs | 2 +- MatFileHandler/SubsystemData.cs | 2 +- MatFileHandler/SubsystemDataReader.cs | 2 +- MatFileHandler/TableAdapter.cs | 2 +- MatFileHandler/Tag.cs | 2 +- 58 files changed, 149 insertions(+), 149 deletions(-) diff --git a/MatFileHandler.Tests/ArrayHandlingTests.cs b/MatFileHandler.Tests/ArrayHandlingTests.cs index afe943f..2f47261 100755 --- a/MatFileHandler.Tests/ArrayHandlingTests.cs +++ b/MatFileHandler.Tests/ArrayHandlingTests.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Numerics; using Xunit; diff --git a/MatFileHandler.Tests/ChecksumCalculatingStreamTests.cs b/MatFileHandler.Tests/ChecksumCalculatingStreamTests.cs index 4274736..3d26135 100644 --- a/MatFileHandler.Tests/ChecksumCalculatingStreamTests.cs +++ b/MatFileHandler.Tests/ChecksumCalculatingStreamTests.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/MatFileHandler.Tests/CommonData.cs b/MatFileHandler.Tests/CommonData.cs index 6267355..e6d1ab3 100755 --- a/MatFileHandler.Tests/CommonData.cs +++ b/MatFileHandler.Tests/CommonData.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler.Tests +namespace MatFileHandler.Tests { /// /// Data used in reading/writing tests. diff --git a/MatFileHandler.Tests/ComplexOfTests.cs b/MatFileHandler.Tests/ComplexOfTests.cs index 8469ef8..72ca4d8 100755 --- a/MatFileHandler.Tests/ComplexOfTests.cs +++ b/MatFileHandler.Tests/ComplexOfTests.cs @@ -1,4 +1,4 @@ -using Xunit; +using Xunit; namespace MatFileHandler.Tests { diff --git a/MatFileHandler.Tests/MatFileReaderTests.cs b/MatFileHandler.Tests/MatFileReaderTests.cs index 4777a93..b3a3775 100755 --- a/MatFileHandler.Tests/MatFileReaderTests.cs +++ b/MatFileHandler.Tests/MatFileReaderTests.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/MatFileHandler.Tests/MatFileReadingMethod.cs b/MatFileHandler.Tests/MatFileReadingMethod.cs index f0ee866..2ec7645 100644 --- a/MatFileHandler.Tests/MatFileReadingMethod.cs +++ b/MatFileHandler.Tests/MatFileReadingMethod.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler.Tests; +namespace MatFileHandler.Tests; /// /// Method of reading .mat files for testing. diff --git a/MatFileHandler.Tests/MatFileWriterTests.cs b/MatFileHandler.Tests/MatFileWriterTests.cs index 5c15b1e..0471575 100755 --- a/MatFileHandler.Tests/MatFileWriterTests.cs +++ b/MatFileHandler.Tests/MatFileWriterTests.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; using System.Numerics; using Xunit; diff --git a/MatFileHandler.Tests/MatFileWritingMethod.cs b/MatFileHandler.Tests/MatFileWritingMethod.cs index 192d496..59f51e4 100644 --- a/MatFileHandler.Tests/MatFileWritingMethod.cs +++ b/MatFileHandler.Tests/MatFileWritingMethod.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler.Tests; +namespace MatFileHandler.Tests; /// /// Method of writing .mat files for testing. diff --git a/MatFileHandler.Tests/PartialUnseekableReadStream.cs b/MatFileHandler.Tests/PartialUnseekableReadStream.cs index 8dd779e..f3e01e7 100644 --- a/MatFileHandler.Tests/PartialUnseekableReadStream.cs +++ b/MatFileHandler.Tests/PartialUnseekableReadStream.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; namespace MatFileHandler.Tests diff --git a/MatFileHandler.Tests/UnseekableWriteStream.cs b/MatFileHandler.Tests/UnseekableWriteStream.cs index 76e4178..8a7f62c 100644 --- a/MatFileHandler.Tests/UnseekableWriteStream.cs +++ b/MatFileHandler.Tests/UnseekableWriteStream.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; namespace MatFileHandler.Tests diff --git a/MatFileHandler/ArrayFlags.cs b/MatFileHandler/ArrayFlags.cs index 666d10e..fdcaa34 100755 --- a/MatFileHandler/ArrayFlags.cs +++ b/MatFileHandler/ArrayFlags.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace MatFileHandler { diff --git a/MatFileHandler/ChecksumCalculatingStream.cs b/MatFileHandler/ChecksumCalculatingStream.cs index 56ae5a4..c566e0d 100644 --- a/MatFileHandler/ChecksumCalculatingStream.cs +++ b/MatFileHandler/ChecksumCalculatingStream.cs @@ -1,92 +1,92 @@ -using System; -using System.IO; - -namespace MatFileHandler -{ - /// - /// A stream that calculates Adler32 checksum of everything - /// written to it before passing to another stream. - /// - internal class ChecksumCalculatingStream : Stream - { - private const uint BigPrime = 0xFFF1; - private readonly Stream _stream; - private uint s1; - private uint s2; - - /// - /// Initializes a new instance of the class. - /// - /// Wrapped stream. - public ChecksumCalculatingStream(Stream stream) - { - _stream = stream; - s1 = 1; - s2 = 0; - } - - /// - public override bool CanRead => false; - - /// - public override bool CanSeek => false; - - /// - public override bool CanWrite => true; - - /// - public override long Length => throw new NotImplementedException(); - - /// - public override long Position - { - get => throw new NotImplementedException(); - set => throw new NotImplementedException(); - } - - /// - public override void Flush() - { - _stream.Flush(); - } - - /// - public override int Read(byte[] buffer, int offset, int count) - { - throw new NotImplementedException(); - } - - /// - public override long Seek(long offset, SeekOrigin origin) - { - throw new NotImplementedException(); - } - - /// - public override void SetLength(long value) - { - throw new NotImplementedException(); - } - - /// - public override void Write(byte[] buffer, int offset, int count) - { - for (var i = offset; i < offset + count; i++) - { - s1 = (s1 + buffer[i]) % BigPrime; - s2 = (s2 + s1) % BigPrime; - } - - _stream.Write(buffer, offset, count); - } - - /// - /// Calculate the checksum of everything written to the stream so far. - /// - /// Checksum of everything written to the stream so far. - public uint GetCrc() - { - return (s2 << 16) | s1; - } - } -} +using System; +using System.IO; + +namespace MatFileHandler +{ + /// + /// A stream that calculates Adler32 checksum of everything + /// written to it before passing to another stream. + /// + internal class ChecksumCalculatingStream : Stream + { + private const uint BigPrime = 0xFFF1; + private readonly Stream _stream; + private uint s1; + private uint s2; + + /// + /// Initializes a new instance of the class. + /// + /// Wrapped stream. + public ChecksumCalculatingStream(Stream stream) + { + _stream = stream; + s1 = 1; + s2 = 0; + } + + /// + public override bool CanRead => false; + + /// + public override bool CanSeek => false; + + /// + public override bool CanWrite => true; + + /// + public override long Length => throw new NotImplementedException(); + + /// + public override long Position + { + get => throw new NotImplementedException(); + set => throw new NotImplementedException(); + } + + /// + public override void Flush() + { + _stream.Flush(); + } + + /// + public override int Read(byte[] buffer, int offset, int count) + { + throw new NotImplementedException(); + } + + /// + public override long Seek(long offset, SeekOrigin origin) + { + throw new NotImplementedException(); + } + + /// + public override void SetLength(long value) + { + throw new NotImplementedException(); + } + + /// + public override void Write(byte[] buffer, int offset, int count) + { + for (var i = offset; i < offset + count; i++) + { + s1 = (s1 + buffer[i]) % BigPrime; + s2 = (s2 + s1) % BigPrime; + } + + _stream.Write(buffer, offset, count); + } + + /// + /// Calculate the checksum of everything written to the stream so far. + /// + /// Checksum of everything written to the stream so far. + public uint GetCrc() + { + return (s2 << 16) | s1; + } + } +} diff --git a/MatFileHandler/ComplexOf.cs b/MatFileHandler/ComplexOf.cs index f37a8a2..8c6f11f 100755 --- a/MatFileHandler/ComplexOf.cs +++ b/MatFileHandler/ComplexOf.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace MatFileHandler { diff --git a/MatFileHandler/CompressionUsage.cs b/MatFileHandler/CompressionUsage.cs index 1dc83d5..ff4068b 100644 --- a/MatFileHandler/CompressionUsage.cs +++ b/MatFileHandler/CompressionUsage.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// Describes compression usage strategy for writing files. diff --git a/MatFileHandler/DataBuilder.cs b/MatFileHandler/DataBuilder.cs index ef527ff..5e43768 100755 --- a/MatFileHandler/DataBuilder.cs +++ b/MatFileHandler/DataBuilder.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Numerics; diff --git a/MatFileHandler/DataElement.cs b/MatFileHandler/DataElement.cs index 70d03f7..b57994d 100755 --- a/MatFileHandler/DataElement.cs +++ b/MatFileHandler/DataElement.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// Base class for all data elements in .mat files. diff --git a/MatFileHandler/DataElementConverter.cs b/MatFileHandler/DataElementConverter.cs index 5084a71..d2a8bb2 100755 --- a/MatFileHandler/DataElementConverter.cs +++ b/MatFileHandler/DataElementConverter.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Numerics; diff --git a/MatFileHandler/DataElementReader.cs b/MatFileHandler/DataElementReader.cs index a98a5d3..34f2bed 100755 --- a/MatFileHandler/DataElementReader.cs +++ b/MatFileHandler/DataElementReader.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; diff --git a/MatFileHandler/DataExtraction.cs b/MatFileHandler/DataExtraction.cs index 9a9ac7a..5802065 100755 --- a/MatFileHandler/DataExtraction.cs +++ b/MatFileHandler/DataExtraction.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace MatFileHandler { diff --git a/MatFileHandler/DataTypeExtensions.cs b/MatFileHandler/DataTypeExtensions.cs index 737b0a3..a27d600 100755 --- a/MatFileHandler/DataTypeExtensions.cs +++ b/MatFileHandler/DataTypeExtensions.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace MatFileHandler { diff --git a/MatFileHandler/DatetimeAdapter.cs b/MatFileHandler/DatetimeAdapter.cs index c56cc71..8d817a9 100644 --- a/MatFileHandler/DatetimeAdapter.cs +++ b/MatFileHandler/DatetimeAdapter.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Linq; using System.Numerics; diff --git a/MatFileHandler/DimensionCalculator.cs b/MatFileHandler/DimensionCalculator.cs index c0ef997..9ef5686 100755 --- a/MatFileHandler/DimensionCalculator.cs +++ b/MatFileHandler/DimensionCalculator.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Linq; namespace MatFileHandler diff --git a/MatFileHandler/DurationAdapter.cs b/MatFileHandler/DurationAdapter.cs index 403f665..38de265 100644 --- a/MatFileHandler/DurationAdapter.cs +++ b/MatFileHandler/DurationAdapter.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace MatFileHandler { diff --git a/MatFileHandler/EnumAdapter.cs b/MatFileHandler/EnumAdapter.cs index eb29e7f..cab7535 100644 --- a/MatFileHandler/EnumAdapter.cs +++ b/MatFileHandler/EnumAdapter.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// A better interface for using enum adapter. diff --git a/MatFileHandler/FakeWriter.cs b/MatFileHandler/FakeWriter.cs index 3ec5fdb..5a37fd7 100644 --- a/MatFileHandler/FakeWriter.cs +++ b/MatFileHandler/FakeWriter.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Numerics; diff --git a/MatFileHandler/HandlerException.cs b/MatFileHandler/HandlerException.cs index 768fb9f..02fc50d 100755 --- a/MatFileHandler/HandlerException.cs +++ b/MatFileHandler/HandlerException.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace MatFileHandler { diff --git a/MatFileHandler/Header.cs b/MatFileHandler/Header.cs index 7b3cc06..dcfe568 100755 --- a/MatFileHandler/Header.cs +++ b/MatFileHandler/Header.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Globalization; using System.IO; using System.Linq; diff --git a/MatFileHandler/IArray.cs b/MatFileHandler/IArray.cs index f95e816..c723d62 100755 --- a/MatFileHandler/IArray.cs +++ b/MatFileHandler/IArray.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Numerics; namespace MatFileHandler diff --git a/MatFileHandler/IArrayOf.cs b/MatFileHandler/IArrayOf.cs index 54ba84b..3b882c7 100755 --- a/MatFileHandler/IArrayOf.cs +++ b/MatFileHandler/IArrayOf.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// An interface providing access to array's contents. diff --git a/MatFileHandler/ICellArray.cs b/MatFileHandler/ICellArray.cs index fe55e6f..979ef2b 100755 --- a/MatFileHandler/ICellArray.cs +++ b/MatFileHandler/ICellArray.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// Matlab's cell array. diff --git a/MatFileHandler/ICharArray.cs b/MatFileHandler/ICharArray.cs index f538f3e..87730b2 100755 --- a/MatFileHandler/ICharArray.cs +++ b/MatFileHandler/ICharArray.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// Matlab's character array. diff --git a/MatFileHandler/IMatFile.cs b/MatFileHandler/IMatFile.cs index ee0a032..cfad8a2 100755 --- a/MatFileHandler/IMatFile.cs +++ b/MatFileHandler/IMatFile.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// An interface for accessing the contents of .mat files. diff --git a/MatFileHandler/IMatObject.cs b/MatFileHandler/IMatObject.cs index 7a57dd2..3f385f8 100644 --- a/MatFileHandler/IMatObject.cs +++ b/MatFileHandler/IMatObject.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; namespace MatFileHandler { diff --git a/MatFileHandler/ISparseArrayOf.cs b/MatFileHandler/ISparseArrayOf.cs index 87b2929..8d6df94 100755 --- a/MatFileHandler/ISparseArrayOf.cs +++ b/MatFileHandler/ISparseArrayOf.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; namespace MatFileHandler { diff --git a/MatFileHandler/IStructureArray.cs b/MatFileHandler/IStructureArray.cs index 2fc13ac..ed51fcf 100755 --- a/MatFileHandler/IStructureArray.cs +++ b/MatFileHandler/IStructureArray.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; namespace MatFileHandler { diff --git a/MatFileHandler/IVariable.cs b/MatFileHandler/IVariable.cs index 27976dd..39bfa10 100755 --- a/MatFileHandler/IVariable.cs +++ b/MatFileHandler/IVariable.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// An interface for accessing the variable contents. diff --git a/MatFileHandler/MatArray.cs b/MatFileHandler/MatArray.cs index d2c0da8..f54c2ef 100755 --- a/MatFileHandler/MatArray.cs +++ b/MatFileHandler/MatArray.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Numerics; namespace MatFileHandler diff --git a/MatFileHandler/MatCellArray.cs b/MatFileHandler/MatCellArray.cs index 8b5f7b4..5f81f61 100755 --- a/MatFileHandler/MatCellArray.cs +++ b/MatFileHandler/MatCellArray.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; namespace MatFileHandler diff --git a/MatFileHandler/MatCharArrayOf.cs b/MatFileHandler/MatCharArrayOf.cs index 13a67a8..7095d2b 100755 --- a/MatFileHandler/MatCharArrayOf.cs +++ b/MatFileHandler/MatCharArrayOf.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// Character array. diff --git a/MatFileHandler/MatFile.cs b/MatFileHandler/MatFile.cs index 5fe612f..e814fff 100755 --- a/MatFileHandler/MatFile.cs +++ b/MatFileHandler/MatFile.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; namespace MatFileHandler diff --git a/MatFileHandler/MatFileReader.cs b/MatFileHandler/MatFileReader.cs index 438456a..a7d0b24 100755 --- a/MatFileHandler/MatFileReader.cs +++ b/MatFileHandler/MatFileReader.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; using System.IO; namespace MatFileHandler diff --git a/MatFileHandler/MatFileWriter.cs b/MatFileHandler/MatFileWriter.cs index 188dc74..67648fe 100755 --- a/MatFileHandler/MatFileWriter.cs +++ b/MatFileHandler/MatFileWriter.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.IO.Compression; diff --git a/MatFileHandler/MatFileWriterOptions.cs b/MatFileHandler/MatFileWriterOptions.cs index 1a9a6ec..18e9da3 100644 --- a/MatFileHandler/MatFileWriterOptions.cs +++ b/MatFileHandler/MatFileWriterOptions.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// Options for writing .mat files. diff --git a/MatFileHandler/MatNumericalArrayOf.cs b/MatFileHandler/MatNumericalArrayOf.cs index 1305f69..9a89da3 100755 --- a/MatFileHandler/MatNumericalArrayOf.cs +++ b/MatFileHandler/MatNumericalArrayOf.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Numerics; namespace MatFileHandler diff --git a/MatFileHandler/MatSparseArrayOf.cs b/MatFileHandler/MatSparseArrayOf.cs index 5552662..4a48e94 100755 --- a/MatFileHandler/MatSparseArrayOf.cs +++ b/MatFileHandler/MatSparseArrayOf.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using System.Numerics; diff --git a/MatFileHandler/MatStructureArray.cs b/MatFileHandler/MatStructureArray.cs index c91b208..e88f6e1 100755 --- a/MatFileHandler/MatStructureArray.cs +++ b/MatFileHandler/MatStructureArray.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/MatFileHandler/MatVariable.cs b/MatFileHandler/MatVariable.cs index 415ca32..ca54a1b 100755 --- a/MatFileHandler/MatVariable.cs +++ b/MatFileHandler/MatVariable.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// internal class MatVariable : IVariable diff --git a/MatFileHandler/MiNum.cs b/MatFileHandler/MiNum.cs index 1c87e94..f966a75 100755 --- a/MatFileHandler/MiNum.cs +++ b/MatFileHandler/MiNum.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// A matrix of type T. diff --git a/MatFileHandler/Opaque.cs b/MatFileHandler/Opaque.cs index 0a899b4..d56c22f 100644 --- a/MatFileHandler/Opaque.cs +++ b/MatFileHandler/Opaque.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Numerics; namespace MatFileHandler diff --git a/MatFileHandler/OpaqueLink.cs b/MatFileHandler/OpaqueLink.cs index 4d33159..bf2d0b9 100644 --- a/MatFileHandler/OpaqueLink.cs +++ b/MatFileHandler/OpaqueLink.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections; using System.Collections.Generic; using System.Linq; diff --git a/MatFileHandler/PositionTrackingStream.cs b/MatFileHandler/PositionTrackingStream.cs index 28a4210..8d35735 100644 --- a/MatFileHandler/PositionTrackingStream.cs +++ b/MatFileHandler/PositionTrackingStream.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; namespace MatFileHandler; diff --git a/MatFileHandler/RawVariable.cs b/MatFileHandler/RawVariable.cs index 1e5411c..984373a 100644 --- a/MatFileHandler/RawVariable.cs +++ b/MatFileHandler/RawVariable.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace MatFileHandler { diff --git a/MatFileHandler/StringAdapter.cs b/MatFileHandler/StringAdapter.cs index c237e71..4dcec46 100644 --- a/MatFileHandler/StringAdapter.cs +++ b/MatFileHandler/StringAdapter.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Text; namespace MatFileHandler diff --git a/MatFileHandler/Substream.cs b/MatFileHandler/Substream.cs index 41692a5..767583b 100644 --- a/MatFileHandler/Substream.cs +++ b/MatFileHandler/Substream.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; namespace MatFileHandler diff --git a/MatFileHandler/SubsystemData.cs b/MatFileHandler/SubsystemData.cs index 88a1aad..c29e545 100644 --- a/MatFileHandler/SubsystemData.cs +++ b/MatFileHandler/SubsystemData.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; namespace MatFileHandler diff --git a/MatFileHandler/SubsystemDataReader.cs b/MatFileHandler/SubsystemDataReader.cs index 32d1956..5dd2197 100644 --- a/MatFileHandler/SubsystemDataReader.cs +++ b/MatFileHandler/SubsystemDataReader.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/MatFileHandler/TableAdapter.cs b/MatFileHandler/TableAdapter.cs index 7c8550b..87686d7 100644 --- a/MatFileHandler/TableAdapter.cs +++ b/MatFileHandler/TableAdapter.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Linq; namespace MatFileHandler diff --git a/MatFileHandler/Tag.cs b/MatFileHandler/Tag.cs index 0ba1e11..31ad51e 100755 --- a/MatFileHandler/Tag.cs +++ b/MatFileHandler/Tag.cs @@ -1,4 +1,4 @@ -namespace MatFileHandler +namespace MatFileHandler { /// /// Type of the data attached to the tag.