Skip to content

Commit 8002153

Browse files
committed
Refactorings
1 parent cc512e5 commit 8002153

File tree

5 files changed

+0
-11
lines changed

5 files changed

+0
-11
lines changed

Network/.vs/Network/v15/.suo

0 Bytes
Binary file not shown.

Network/Packets/AddPacketTypeResponse.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ namespace Network.Packets
4040
[PacketRequest(typeof(AddPacketTypeRequest))]
4141
internal class AddPacketTypeResponse : ResponsePacket
4242
{
43-
/// <summary>
44-
/// Initializes a new instance of the <see cref="AddPacketTypeResponse"/> class.
45-
/// </summary>
46-
public AddPacketTypeResponse() { }
47-
4843
/// <summary>
4944
/// Initializes a new instance of the <see cref="AddPacketTypeResponse"/> class.
5045
/// </summary>

Network/Packets/EstablishUdpResponse.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ namespace Network.Packets
3636
[PacketRequest(typeof(EstablishUdpRequest))]
3737
internal class EstablishUdpResponse : ResponsePacket
3838
{
39-
public EstablishUdpResponse() { }
40-
4139
internal EstablishUdpResponse(int udpPort, RequestPacket request)
4240
: base(request)
4341
{

Network/Packets/RSA/RSAKeyInformationResponse.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ namespace Network.Packets.RSA
3636
[PacketRequest(typeof(RSAKeyInformationRequest))]
3737
internal class RSAKeyInformationResponse : ResponsePacket
3838
{
39-
public RSAKeyInformationResponse() { }
40-
4139
public RSAKeyInformationResponse(string publicKey, int keySize, RSAKeyInformationRequest request)
4240
: base(request)
4341
{

Network/Packets/UDPPingResponse.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ namespace Network.Packets
99
[PacketRequest(typeof(UDPPingRequest))]
1010
internal class UDPPingResponse : ResponsePacket
1111
{
12-
public UDPPingResponse() { }
13-
1412
public UDPPingResponse(UDPPingRequest request)
1513
: base(request)
1614
{

0 commit comments

Comments
 (0)