aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <davidf@davidf1.microen.local>2014-01-16 14:01:53 -0800
committerunknown <davidf@davidf1.microen.local>2014-01-16 14:01:53 -0800
commit2a491a76d206896b8ecce8f5bfecc2b62b5898fa (patch)
tree9364af001828341e9938861ebe9ec99eaa067dd0
parent266498f92cc9a75527a95fe4e401b67f5e3b5b42 (diff)
Removed code that was duplicated on top of itself.
-rw-r--r--MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs
index d00494bac..9b3f5a306 100644
--- a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs
+++ b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs
@@ -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);
}