From ebc429f7a6f8d5407181bd23d393737bbba628e5 Mon Sep 17 00:00:00 2001 From: Ty Conner Date: Wed, 14 Aug 2024 01:47:33 -0400 Subject: [PATCH] Clear compiler warnings (#4216) --- Source/ACE.DatLoader/Entity/BaseProperty.cs | 2 +- Source/ACE.DatLoader/Entity/BasePropertyDesc.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ACE.DatLoader/Entity/BaseProperty.cs b/Source/ACE.DatLoader/Entity/BaseProperty.cs index 1806c57334..449ece5678 100644 --- a/Source/ACE.DatLoader/Entity/BaseProperty.cs +++ b/Source/ACE.DatLoader/Entity/BaseProperty.cs @@ -99,7 +99,7 @@ public void Unpack(BinaryReader reader) default: // Should never hit this! throw new NotImplementedException(); - break; + //break; } diff --git a/Source/ACE.DatLoader/Entity/BasePropertyDesc.cs b/Source/ACE.DatLoader/Entity/BasePropertyDesc.cs index c32a567aef..069cb71710 100644 --- a/Source/ACE.DatLoader/Entity/BasePropertyDesc.cs +++ b/Source/ACE.DatLoader/Entity/BasePropertyDesc.cs @@ -36,7 +36,7 @@ public class BasePropertyDesc : IUnpackable PropertyInheritanceType m_inheritanceType; PropertyDatFileType m_datFileType; PropertyPropagationType m_propagationType; - PropertyCachingType m_cachingType; + //PropertyCachingType m_cachingType; public bool m_bRequired; public bool m_bReadOnly;