Skip to content

Commit a07e426

Browse files
committed
Code format
1 parent f87ab54 commit a07e426

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

DevTrends.MvcDonutCaching/KeyGenerator.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ public string GenerateKey(ControllerContext context, CacheSettings cacheSettings
135135
else if (cacheSettings.VaryByParam != "*")
136136
{
137137
var parameters = cacheSettings.VaryByParam.ToLowerInvariant().Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
138-
routeValues = new RouteValueDictionary(routeValues.Where(x => parameters.Contains(x.Key)).ToDictionary(x => x.Key, x => x.Value));
138+
routeValues = new RouteValueDictionary(routeValues.Where(x => parameters.Contains(x.Key))
139+
.ToDictionary(x => x.Key, x => x.Value));
139140
}
140141
}
141142

0 commit comments

Comments
 (0)