Browse Source

Wrapping long line on function parameters

Neil Burrows 5 years ago
parent
commit
966ebfaf68
1 changed files with 3 additions and 1 deletions
  1. 3 1
      MediaBrowser.Common/Plugins/BasePlugin.cs

+ 3 - 1
MediaBrowser.Common/Plugins/BasePlugin.cs

@@ -53,7 +53,9 @@ 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(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), StringComparison.InvariantCulture);
+        public bool CanUninstall => !Path.GetDirectoryName(AssemblyFilePath).Equals(
+            Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location),
+            StringComparison.InvariantCulture);
 
 
         /// <summary>
         /// <summary>
         /// Gets the plugin info.
         /// Gets the plugin info.