mirror of
https://github.com/oliverbooth/TcpDotNet
synced 2024-11-09 23:25:42 +00:00
style: remove UTF-8 BOM
This commit is contained in:
parent
0c5c2087b9
commit
d7ba24e302
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol;
|
||||
using TcpDotNet.Protocol;
|
||||
|
||||
namespace TcpDotNet.ClientIntegrationTest;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol;
|
||||
using TcpDotNet.Protocol;
|
||||
|
||||
namespace TcpDotNet.ClientIntegrationTest;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol;
|
||||
using TcpDotNet.Protocol;
|
||||
|
||||
namespace TcpDotNet.ClientIntegrationTest.PacketHandlers;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol;
|
||||
using TcpDotNet.Protocol;
|
||||
|
||||
namespace TcpDotNet.ListenerIntegrationTest;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol;
|
||||
using TcpDotNet.Protocol;
|
||||
|
||||
namespace TcpDotNet.ListenerIntegrationTest;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol;
|
||||
using TcpDotNet.Protocol;
|
||||
|
||||
namespace TcpDotNet.ListenerIntegrationTest.PacketHandlers;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet;
|
||||
using TcpDotNet;
|
||||
using TcpDotNet.ListenerIntegrationTest.PacketHandlers;
|
||||
using TcpDotNet.Protocol;
|
||||
using TcpDotNet.Protocol.Packets.ClientBound;
|
||||
|
@ -1 +1 @@
|
||||
[assembly: CLSCompliant(true)]
|
||||
[assembly: CLSCompliant(true)]
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
using System.Reflection;
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet;
|
||||
namespace TcpDotNet;
|
||||
|
||||
/// <summary>
|
||||
/// An enumeration of states for a <see cref="ClientNode" /> to be in.
|
||||
|
@ -1,4 +1,4 @@
|
||||
using Chilkat;
|
||||
using Chilkat;
|
||||
|
||||
namespace TcpDotNet;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Net.Sockets;
|
||||
using System.Reflection;
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol;
|
||||
namespace TcpDotNet.Protocol;
|
||||
|
||||
/// <summary>
|
||||
/// An enumeration of handshake responses.
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Reflection;
|
||||
using System.Reflection;
|
||||
|
||||
namespace TcpDotNet.Protocol;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol;
|
||||
namespace TcpDotNet.Protocol;
|
||||
|
||||
/// <summary>
|
||||
/// Specifies metadata for a <see cref="Packet" />.
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol;
|
||||
namespace TcpDotNet.Protocol;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the base class for a packet handler.
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol.Packets.ClientBound;
|
||||
using TcpDotNet.Protocol.Packets.ClientBound;
|
||||
|
||||
namespace TcpDotNet.Protocol.PacketHandlers;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Security.Cryptography;
|
||||
using System.Security.Cryptography;
|
||||
using TcpDotNet.Protocol.Packets.ClientBound;
|
||||
using TcpDotNet.Protocol.Packets.ServerBound;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol.Packets.ClientBound;
|
||||
using TcpDotNet.Protocol.Packets.ClientBound;
|
||||
using TcpDotNet.Protocol.Packets.ServerBound;
|
||||
|
||||
namespace TcpDotNet.Protocol.PacketHandlers;
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol.Packets.ClientBound;
|
||||
namespace TcpDotNet.Protocol.Packets.ClientBound;
|
||||
|
||||
[Packet(0x7FFFFFFF)]
|
||||
internal sealed class DisconnectPacket : Packet
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Security.Cryptography;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace TcpDotNet.Protocol.Packets.ClientBound;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol.Packets.ServerBound;
|
||||
using TcpDotNet.Protocol.Packets.ServerBound;
|
||||
|
||||
namespace TcpDotNet.Protocol.Packets.ClientBound;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol.Packets.ClientBound;
|
||||
namespace TcpDotNet.Protocol.Packets.ClientBound;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a packet which performs a heartbeat response.
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol.Packets.ClientBound;
|
||||
namespace TcpDotNet.Protocol.Packets.ClientBound;
|
||||
|
||||
[Packet(0x7FFFFFE4)]
|
||||
internal sealed class SessionExchangePacket : Packet
|
||||
|
@ -1,4 +1,4 @@
|
||||
using TcpDotNet.Protocol.Packets.ClientBound;
|
||||
using TcpDotNet.Protocol.Packets.ClientBound;
|
||||
|
||||
namespace TcpDotNet.Protocol.Packets.ServerBound;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol.Packets.ServerBound;
|
||||
namespace TcpDotNet.Protocol.Packets.ServerBound;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a packet which requests a handshake with a <see cref="ProtocolListener" />.
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Security.Cryptography;
|
||||
using System.Security.Cryptography;
|
||||
|
||||
namespace TcpDotNet.Protocol.Packets.ServerBound;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Net;
|
||||
using System.Net;
|
||||
using System.Numerics;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Net;
|
||||
using System.Net;
|
||||
using System.Numerics;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol;
|
||||
namespace TcpDotNet.Protocol;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a request packet, which forms a request/response packet pair.
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace TcpDotNet.Protocol;
|
||||
namespace TcpDotNet.Protocol;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a response packet, which forms a request/response packet pair.
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Net;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
using System.Security.Cryptography;
|
||||
using TcpDotNet.EventData;
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System.Net;
|
||||
using System.Net;
|
||||
using System.Net.Sockets;
|
||||
using System.Security.Cryptography;
|
||||
using TcpDotNet.EventData;
|
||||
|
Loading…
Reference in New Issue
Block a user