Whitespace and type fixes (#5917)

This commit is contained in:
Clint Rutkas
2020-08-13 15:31:14 -07:00
committed by GitHub
parent 24d7232559
commit e02977edc0
18 changed files with 147 additions and 103 deletions

View File

@@ -37,7 +37,7 @@ namespace Microsoft.Plugin.Program.Programs
public static PackageWrapper GetWrapperFromPackage(Package package)
{
if(package == null)
if (package == null)
{
throw new ArgumentNullException(nameof(package));
}
@@ -55,7 +55,7 @@ namespace Microsoft.Plugin.Program.Programs
package.Id.FullName,
package.Id.FamilyName,
package.IsFramework,
package.IsDevelopmentMode,
package.IsDevelopmentMode,
string.Empty);
}
@@ -67,7 +67,6 @@ namespace Microsoft.Plugin.Program.Programs
package.IsDevelopmentMode,
path
);
}
}
}