aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-31 17:04:29 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-31 17:04:29 -0400
commitb38a41deda4c25bd2f65d59a06bcd7b2c471dbfb (patch)
treee07c74493e585b9171c13564f6656c9dfa48b9be
parent9f06eb781f5992496a7b1a59fb55b0aa6520261f (diff)
use var
-rw-r--r--MediaBrowser.Server.Implementations/Library/LibraryManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
index 303580a49..84055cea7 100644
--- a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
+++ b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
@@ -316,7 +316,7 @@ namespace MediaBrowser.Server.Implementations.Library
foreach (var special in movie.SpecialFeatures)
{
// Prevent access to foreach variable in closure
- Video special1 = special;
+ var special1 = special;
LibraryItemsCache.AddOrUpdate(special.Id, special, delegate { return special1; });
}
}