more braces and whitespace style errors (#5951)

This commit is contained in:
Clint Rutkas
2020-08-14 09:22:12 -07:00
committed by GitHub
parent 9e8b0d2807
commit 913615f1c2
14 changed files with 80 additions and 68 deletions

View File

@@ -23,7 +23,9 @@ namespace Microsoft.Plugin.Program.Programs
public string InstalledLocation { get; } = string.Empty;
public PackageWrapper() { }
public PackageWrapper()
{
}
public PackageWrapper(string Name, string FullName, string FamilyName, bool IsFramework, bool IsDevelopmentMode, string InstalledLocation)
{
@@ -65,8 +67,7 @@ namespace Microsoft.Plugin.Program.Programs
package.Id.FamilyName,
package.IsFramework,
package.IsDevelopmentMode,
path
);
path);
}
}
}