Skip to content

Commit 9876c48

Browse files
committed
Remove uneeded change
1 parent 147cc2c commit 9876c48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Http.Abstractions/src/Routing/RouteValueDictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Microsoft.AspNetCore.Routing
1919
public class RouteValueDictionary : IDictionary<string, object?>, IReadOnlyDictionary<string, object?>
2020
{
2121
// 4 is a good default capacity here because that leaves enough space for area/controller/action/id
22-
private readonly int DefaultCapacity = 4;
22+
private const int DefaultCapacity = 4;
2323

2424
internal KeyValuePair<string, object?>[] _arrayStorage;
2525
internal PropertyStorage? _propertyStorage;

0 commit comments

Comments
 (0)