Remove superfluous initializations from PacketReader

This commit is contained in:
Joshua Ashton 2020-07-28 05:33:54 +01:00
parent 5401701aca
commit 620ee6ade9
1 changed files with 0 additions and 2 deletions

View File

@ -13,8 +13,6 @@ namespace Feather::Network
PacketReader(uint8_t* dataPtr)
: m_data(dataPtr), m_length(ReadVarInt())
{
m_data = dataPtr;
m_length = ReadVarInt();
}
inline uint8_t ReadByte()