style: remove UTF-8 BOM

This commit is contained in:
Oliver Booth 2024-02-12 17:41:52 +00:00
parent 0c5c2087b9
commit d7ba24e302
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
33 changed files with 33 additions and 33 deletions

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol; using TcpDotNet.Protocol;
namespace TcpDotNet.ClientIntegrationTest; namespace TcpDotNet.ClientIntegrationTest;

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol; using TcpDotNet.Protocol;
namespace TcpDotNet.ClientIntegrationTest; namespace TcpDotNet.ClientIntegrationTest;

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol; using TcpDotNet.Protocol;
namespace TcpDotNet.ClientIntegrationTest.PacketHandlers; namespace TcpDotNet.ClientIntegrationTest.PacketHandlers;

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol; using TcpDotNet.Protocol;
namespace TcpDotNet.ListenerIntegrationTest; namespace TcpDotNet.ListenerIntegrationTest;

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol; using TcpDotNet.Protocol;
namespace TcpDotNet.ListenerIntegrationTest; namespace TcpDotNet.ListenerIntegrationTest;

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol; using TcpDotNet.Protocol;
namespace TcpDotNet.ListenerIntegrationTest.PacketHandlers; namespace TcpDotNet.ListenerIntegrationTest.PacketHandlers;

View File

@ -1,4 +1,4 @@
using TcpDotNet; using TcpDotNet;
using TcpDotNet.ListenerIntegrationTest.PacketHandlers; using TcpDotNet.ListenerIntegrationTest.PacketHandlers;
using TcpDotNet.Protocol; using TcpDotNet.Protocol;
using TcpDotNet.Protocol.Packets.ClientBound; using TcpDotNet.Protocol.Packets.ClientBound;

View File

@ -1 +1 @@
[assembly: CLSCompliant(true)] [assembly: CLSCompliant(true)]

View File

@ -1,4 +1,4 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Net; using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using System.Reflection; using System.Reflection;

View File

@ -1,4 +1,4 @@
namespace TcpDotNet; namespace TcpDotNet;
/// <summary> /// <summary>
/// An enumeration of states for a <see cref="ClientNode" /> to be in. /// An enumeration of states for a <see cref="ClientNode" /> to be in.

View File

@ -1,4 +1,4 @@
using Chilkat; using Chilkat;
namespace TcpDotNet; namespace TcpDotNet;

View File

@ -1,4 +1,4 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.Net.Sockets; using System.Net.Sockets;
using System.Reflection; using System.Reflection;

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol; namespace TcpDotNet.Protocol;
/// <summary> /// <summary>
/// An enumeration of handshake responses. /// An enumeration of handshake responses.

View File

@ -1,4 +1,4 @@
using System.Reflection; using System.Reflection;
namespace TcpDotNet.Protocol; namespace TcpDotNet.Protocol;

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol; namespace TcpDotNet.Protocol;
/// <summary> /// <summary>
/// Specifies metadata for a <see cref="Packet" />. /// Specifies metadata for a <see cref="Packet" />.

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol; namespace TcpDotNet.Protocol;
/// <summary> /// <summary>
/// Represents the base class for a packet handler. /// Represents the base class for a packet handler.

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol.Packets.ClientBound; using TcpDotNet.Protocol.Packets.ClientBound;
namespace TcpDotNet.Protocol.PacketHandlers; namespace TcpDotNet.Protocol.PacketHandlers;

View File

@ -1,4 +1,4 @@
using System.Security.Cryptography; using System.Security.Cryptography;
using TcpDotNet.Protocol.Packets.ClientBound; using TcpDotNet.Protocol.Packets.ClientBound;
using TcpDotNet.Protocol.Packets.ServerBound; using TcpDotNet.Protocol.Packets.ServerBound;

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol.Packets.ClientBound; using TcpDotNet.Protocol.Packets.ClientBound;
using TcpDotNet.Protocol.Packets.ServerBound; using TcpDotNet.Protocol.Packets.ServerBound;
namespace TcpDotNet.Protocol.PacketHandlers; namespace TcpDotNet.Protocol.PacketHandlers;

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol.Packets.ClientBound; namespace TcpDotNet.Protocol.Packets.ClientBound;
[Packet(0x7FFFFFFF)] [Packet(0x7FFFFFFF)]
internal sealed class DisconnectPacket : Packet internal sealed class DisconnectPacket : Packet

View File

@ -1,4 +1,4 @@
using System.Security.Cryptography; using System.Security.Cryptography;
namespace TcpDotNet.Protocol.Packets.ClientBound; namespace TcpDotNet.Protocol.Packets.ClientBound;

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol.Packets.ServerBound; using TcpDotNet.Protocol.Packets.ServerBound;
namespace TcpDotNet.Protocol.Packets.ClientBound; namespace TcpDotNet.Protocol.Packets.ClientBound;

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol.Packets.ClientBound; namespace TcpDotNet.Protocol.Packets.ClientBound;
/// <summary> /// <summary>
/// Represents a packet which performs a heartbeat response. /// Represents a packet which performs a heartbeat response.

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol.Packets.ClientBound; namespace TcpDotNet.Protocol.Packets.ClientBound;
[Packet(0x7FFFFFE4)] [Packet(0x7FFFFFE4)]
internal sealed class SessionExchangePacket : Packet internal sealed class SessionExchangePacket : Packet

View File

@ -1,4 +1,4 @@
using TcpDotNet.Protocol.Packets.ClientBound; using TcpDotNet.Protocol.Packets.ClientBound;
namespace TcpDotNet.Protocol.Packets.ServerBound; namespace TcpDotNet.Protocol.Packets.ServerBound;

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol.Packets.ServerBound; namespace TcpDotNet.Protocol.Packets.ServerBound;
/// <summary> /// <summary>
/// Represents a packet which requests a handshake with a <see cref="ProtocolListener" />. /// Represents a packet which requests a handshake with a <see cref="ProtocolListener" />.

View File

@ -1,4 +1,4 @@
using System.Security.Cryptography; using System.Security.Cryptography;
namespace TcpDotNet.Protocol.Packets.ServerBound; namespace TcpDotNet.Protocol.Packets.ServerBound;

View File

@ -1,4 +1,4 @@
using System.Net; using System.Net;
using System.Numerics; using System.Numerics;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;

View File

@ -1,4 +1,4 @@
using System.Net; using System.Net;
using System.Numerics; using System.Numerics;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol; namespace TcpDotNet.Protocol;
/// <summary> /// <summary>
/// Represents a request packet, which forms a request/response packet pair. /// Represents a request packet, which forms a request/response packet pair.

View File

@ -1,4 +1,4 @@
namespace TcpDotNet.Protocol; namespace TcpDotNet.Protocol;
/// <summary> /// <summary>
/// Represents a response packet, which forms a request/response packet pair. /// Represents a response packet, which forms a request/response packet pair.

View File

@ -1,4 +1,4 @@
using System.Net; using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using System.Security.Cryptography; using System.Security.Cryptography;
using TcpDotNet.EventData; using TcpDotNet.EventData;

View File

@ -1,4 +1,4 @@
using System.Net; using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using System.Security.Cryptography; using System.Security.Cryptography;
using TcpDotNet.EventData; using TcpDotNet.EventData;