This commit is contained in:
Luke Pulverenti 2014-01-16 17:49:36 -05:00
commit 9688ef02ba

View file

@ -82,16 +82,6 @@ namespace MediaBrowser.Common.Implementations.IO
throw new ArgumentNullException("target");
}
if (string.IsNullOrEmpty(shortcutPath))
{
throw new ArgumentNullException("shortcutPath");
}
if (string.IsNullOrEmpty(target))
{
throw new ArgumentNullException("target");
}
File.WriteAllText(shortcutPath, target);
}