Skip to content

Commit 9bcac26

Browse files
committed
Whitespace cleanup.
1 parent e8c6b7b commit 9bcac26

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

Infusion.LegacyApi/PlayerObservers.cs

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ private void HandleBoatMovingPacket(BoatMovingPacket packet)
6868

6969
}
7070
}
71-
7271
}
7372

7473
private Skill? lastSkill;

Infusion/Packets/Client/SellRequest.cs

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
using Infusion.IO;
2-
using System;
3-
using System.Collections.Generic;
4-
using System.Text;
52

63
namespace Infusion.Packets.Client
74
{
85
internal sealed class SellRequest: MaterializedPacket
96
{
107
private Packet rawPacket;
8+
119
public override Packet RawPacket => rawPacket;
10+
1211
public SellRequest()
1312
{
14-
1513
}
1614

1715
public SellRequest(ObjectId vendor, SellListItem[] list)
@@ -37,16 +35,11 @@ public SellRequest(ObjectId vendor, SellListItem[] list)
3735
writer.WriteUShort(item.Amount);
3836
}
3937

40-
4138
rawPacket = new Packet(PacketDefinitions.SellRequest.Id, payload);
42-
4339
}
4440

4541
public override void Deserialize(Packet rawPacket)
4642
{
47-
4843
}
4944
}
50-
51-
52-
}
45+
}

0 commit comments

Comments
 (0)