Skip to content

Commit

Permalink
Merge pull request #1466 from davkean/AvoidBoxingEnumerable
Browse files Browse the repository at this point in the history
Avoid boxing List<T> enumerable
  • Loading branch information
davkean authored Aug 2, 2017
2 parents 98ea6b2 + 9680f19 commit 40a0660
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ public ItemMetadata(DependencyType type, IList<string> dependencies = null, bool
/// A list of name/version strings to specify dependency identities.
/// Note: identity here is just a "name/version" and does not have TFM part in front.
/// </summary>
public IList<string> Dependencies { get; }
public List<string> Dependencies { get; }

/// <summary>
/// Returns name/value pairs for metadata specific to given item type's implementation.
Expand Down

0 comments on commit 40a0660

Please sign in to comment.