فهرست منبع

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>
         /// <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.