From 9174e17f5372905d3f494e1b36688f41dff367cc Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 17 Apr 2021 22:10:51 -0400 Subject: mark field readonly --- src/SMAPI/Framework/ModLoading/ModMetadata.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/SMAPI/Framework/ModLoading/ModMetadata.cs') diff --git a/src/SMAPI/Framework/ModLoading/ModMetadata.cs b/src/SMAPI/Framework/ModLoading/ModMetadata.cs index 0d89fd20..17e6d59a 100644 --- a/src/SMAPI/Framework/ModLoading/ModMetadata.cs +++ b/src/SMAPI/Framework/ModLoading/ModMetadata.cs @@ -20,7 +20,7 @@ namespace StardewModdingAPI.Framework.ModLoading private ModWarning ActualWarnings = ModWarning.None; /// The mod IDs which are listed as a requirement by this mod. The value for each pair indicates whether the dependency is required (i.e. not an optional dependency). - private Lazy> Dependencies; + private readonly Lazy> Dependencies; /********* -- cgit