From 2528c5dac0a92994209a15b3be45b97b248b3673 Mon Sep 17 00:00:00 2001 From: Martin Benjamins Date: Mon, 15 Jul 2024 23:31:04 +0200 Subject: [PATCH] Remove unneeded new keywords --- Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs b/Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs index 459512c..b5ff613 100644 --- a/Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs +++ b/Warcraft.NET/Files/WDT/Entries/SL/MPL3Entry.cs @@ -110,7 +110,7 @@ public MPL3Entry(byte[] data) /// Gets the size of an entry. /// /// The size. - public new static int GetSize() + public static int GetSize() { return 56; } @@ -119,7 +119,7 @@ public MPL3Entry(byte[] data) /// Gets the size of the data contained in this chunk. /// /// The size. - public new byte[] Serialize(long offset = 0) + public byte[] Serialize(long offset = 0) { using (var ms = new MemoryStream()) using (var bw = new BinaryWriter(ms))