mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Wrapping long line on function parameters (take 2)
This commit is contained in:
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…
x
Reference in New Issue
Block a user