From 929dccb75a1405737975d76648e015a3e7c00177 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 7 Oct 2017 23:07:10 -0400 Subject: reorganise repo structure --- .../Framework/Reflection/CacheEntry.cs | 30 ---------------------- 1 file changed, 30 deletions(-) delete mode 100644 src/StardewModdingAPI/Framework/Reflection/CacheEntry.cs (limited to 'src/StardewModdingAPI/Framework/Reflection/CacheEntry.cs') diff --git a/src/StardewModdingAPI/Framework/Reflection/CacheEntry.cs b/src/StardewModdingAPI/Framework/Reflection/CacheEntry.cs deleted file mode 100644 index 30faca37..00000000 --- a/src/StardewModdingAPI/Framework/Reflection/CacheEntry.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Reflection; - -namespace StardewModdingAPI.Framework.Reflection -{ - /// A cached member reflection result. - internal struct CacheEntry - { - /********* - ** Accessors - *********/ - /// Whether the lookup found a valid match. - public bool IsValid; - - /// The reflection data for this member (or null if invalid). - public MemberInfo MemberInfo; - - - /********* - ** Public methods - *********/ - /// Construct an instance. - /// Whether the lookup found a valid match. - /// The reflection data for this member (or null if invalid). - public CacheEntry(bool isValid, MemberInfo memberInfo) - { - this.IsValid = isValid; - this.MemberInfo = memberInfo; - } - } -} -- cgit