aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/IO/IShortcutHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/IO/IShortcutHandler.cs')
-rw-r--r--MediaBrowser.Model/IO/IShortcutHandler.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Model/IO/IShortcutHandler.cs b/MediaBrowser.Model/IO/IShortcutHandler.cs
index 5c663aa0d..2c364a962 100644
--- a/MediaBrowser.Model/IO/IShortcutHandler.cs
+++ b/MediaBrowser.Model/IO/IShortcutHandler.cs
@@ -15,14 +15,13 @@ namespace MediaBrowser.Model.IO
/// </summary>
/// <param name="shortcutPath">The shortcut path.</param>
/// <returns>System.String.</returns>
- string Resolve(string shortcutPath);
+ string? Resolve(string shortcutPath);
/// <summary>
/// Creates the specified shortcut path.
/// </summary>
/// <param name="shortcutPath">The shortcut path.</param>
/// <param name="targetPath">The target path.</param>
- /// <returns>System.String.</returns>
void Create(string shortcutPath, string targetPath);
}
}