Skip to content

Commit

Permalink
Remove unneeded new keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlamin committed Jul 15, 2024
1 parent e45058f commit 2528c5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public MPL3Entry(byte[] data)
/// Gets the size of an entry.
/// </summary>
/// <returns>The size.</returns>
public new static int GetSize()
public static int GetSize()
{
return 56;
}
Expand All @@ -119,7 +119,7 @@ public MPL3Entry(byte[] data)
/// Gets the size of the data contained in this chunk.
/// </summary>
/// <returns>The size.</returns>
public new byte[] Serialize(long offset = 0)
public byte[] Serialize(long offset = 0)
{
using (var ms = new MemoryStream())
using (var bw = new BinaryWriter(ms))
Expand Down

0 comments on commit 2528c5d

Please sign in to comment.