remove nameof

This commit is contained in:
Luke Pulverenti 2016-07-30 15:19:46 -04:00
parent 1bd3b22c81
commit 62b0c2605f

View file

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