Browse Source

remove nameof

Luke Pulverenti 9 years ago
parent
commit
62b0c2605f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Model/Extensions/ListHelper.cs

+ 1 - 1
MediaBrowser.Model/Extensions/ListHelper.cs

@@ -10,7 +10,7 @@ namespace MediaBrowser.Model.Extensions
         {
             if (value == null)
             {
-                throw new ArgumentNullException(nameof(value));
+                throw new ArgumentNullException("value");
             }
 
             return list.Contains(value, StringComparer.OrdinalIgnoreCase);