From 09cb0987052ee6bd717176b755ab78398c5a5def Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 30 Nov 2014 23:28:18 +0000 Subject: [PATCH] Core Feature Analysis - don't reflect properties, their get/set methods show up when iterating methods --- BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs b/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs index 5a4ff198ed..5d1abe90f8 100644 --- a/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs +++ b/BizHawk.Client.EmuHawk/CoreFeatureAnalysis.cs @@ -123,6 +123,8 @@ namespace BizHawk.Client.EmuHawk } } + // Properties are redundant the getter and setters show up when iterating methods + /* foreach (var field in service.GetProperties().OrderBy(f => f.Name)) { var i = field.IsImplemented(); @@ -139,6 +141,7 @@ namespace BizHawk.Client.EmuHawk fullyImplementedInterface = false; } } + */ } else {