Wrapping long line on function parameters (take 2)

pull/3411/head
Neil Burrows 5 years ago
parent 966ebfaf68
commit 0bab57ebbc

@ -53,9 +53,8 @@ namespace MediaBrowser.Common.Plugins
/// <summary> /// <summary>
/// Gets a value indicating whether the plugin can be uninstalled. /// Gets a value indicating whether the plugin can be uninstalled.
/// </summary> /// </summary>
public bool CanUninstall => !Path.GetDirectoryName(AssemblyFilePath).Equals( public bool CanUninstall => !Path.GetDirectoryName(AssemblyFilePath)
Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), .Equals(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), StringComparison.InvariantCulture);
StringComparison.InvariantCulture);
/// <summary> /// <summary>
/// Gets the plugin info. /// Gets the plugin info.

Loading…
Cancel
Save