浏览代码

Wrapping long line on function parameters (take 2)

Neil Burrows 5 年之前
父节点
当前提交
0bab57ebbc
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      MediaBrowser.Common/Plugins/BasePlugin.cs

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

@@ -53,9 +53,8 @@ namespace MediaBrowser.Common.Plugins
         /// <summary>
         /// Gets a value indicating whether the plugin can be uninstalled.
         /// </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>
         /// Gets the plugin info.