mark field readonly

This commit is contained in:
Jesse Plamondon-Willard 2021-04-17 22:10:51 -04:00
parent f961a376ee
commit 9174e17f53
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ namespace StardewModdingAPI.Framework.ModLoading
private ModWarning ActualWarnings = ModWarning.None;
/// <summary>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).</summary>
private Lazy<IDictionary<string, bool>> Dependencies;
private readonly Lazy<IDictionary<string, bool>> Dependencies;
/*********