Skip to content

Commit

Permalink
ConfigFile: Fix visibility of Values
Browse files Browse the repository at this point in the history
GetConfigEntries was obsoleted, but Values was never set to public (only explicitly implemented)
  • Loading branch information
ghorsington committed Aug 9, 2022
1 parent 0d7ba3a commit e473f08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BepInEx.Core/Configuration/ConfigFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public ICollection<ConfigDefinition> Keys
/// Returns the ConfigEntryBase values that the ConfigFile contains.
/// <para>Creates a new array when the property is accessed. Thread-safe.</para>
/// </summary>
ICollection<ConfigEntryBase> IDictionary<ConfigDefinition, ConfigEntryBase>.Values
public ICollection<ConfigEntryBase> Values
{
get
{
Expand Down

0 comments on commit e473f08

Please sign in to comment.