From 7f99dd95d6032023a5e052d7abf3a24c749fedbe Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Thu, 18 Jun 2020 03:26:30 +1000 Subject: [PATCH] Enable CA1010 and fix noncompliance "Collections should implement generic interface" --- Common.ruleset | 3 --- src/BizHawk.Client.Common/RecentFiles.cs | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Common.ruleset b/Common.ruleset index 5eeaa2401a..fa3401f545 100644 --- a/Common.ruleset +++ b/Common.ruleset @@ -29,9 +29,6 @@ - - - diff --git a/src/BizHawk.Client.Common/RecentFiles.cs b/src/BizHawk.Client.Common/RecentFiles.cs index 12efeb75dd..b28074f3c1 100644 --- a/src/BizHawk.Client.Common/RecentFiles.cs +++ b/src/BizHawk.Client.Common/RecentFiles.cs @@ -7,7 +7,7 @@ using Newtonsoft.Json; namespace BizHawk.Client.Common { [JsonObject] - public class RecentFiles : IEnumerable + public class RecentFiles : IEnumerable { // ReSharper disable once FieldCanBeMadeReadOnly.Local private List recentlist;