Skip to content

Commit

Permalink
Remove uneeded change
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotalik committed Mar 30, 2021
1 parent 147cc2c commit 9876c48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Microsoft.AspNetCore.Routing
public class RouteValueDictionary : IDictionary<string, object?>, IReadOnlyDictionary<string, object?>
{
// 4 is a good default capacity here because that leaves enough space for area/controller/action/id
private readonly int DefaultCapacity = 4;
private const int DefaultCapacity = 4;

internal KeyValuePair<string, object?>[] _arrayStorage;
internal PropertyStorage? _propertyStorage;
Expand Down

0 comments on commit 9876c48

Please sign in to comment.