Merge pull request #668 from ardave/master

Removed code that was duplicated on top of itself.
This commit is contained in:
Luke 2014-01-16 14:18:45 -08:00
commit b3f31d6944

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);
}