From eda11c7eb726da970de68c5b353f946d1da0a7a3 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 24 Dec 2024 18:11:55 -0800 Subject: Group creation and update PR nits and feedback fixes --- src/ext/Util/wixext/UtilCompiler.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ext/Util/wixext/UtilCompiler.cs') diff --git a/src/ext/Util/wixext/UtilCompiler.cs b/src/ext/Util/wixext/UtilCompiler.cs index 4b1e43b5..f59ffcd6 100644 --- a/src/ext/Util/wixext/UtilCompiler.cs +++ b/src/ext/Util/wixext/UtilCompiler.cs @@ -1485,7 +1485,7 @@ namespace WixToolset.Util switch (child.Name.LocalName) { case "GroupRef": - this.ParseGroupRefElement(intermediate, section, child, id.Id, groupType:true); + this.ParseGroupRefElement(intermediate, section, child, id.Id, groupType: true); break; default: this.ParseHelper.UnexpectedElement(element, child); @@ -1521,7 +1521,7 @@ namespace WixToolset.Util /// Element to parse. /// Required child id to be joined to the group. /// whether the child is a group (true) or a user (false) - private void ParseGroupRefElement(Intermediate intermediate, IntermediateSection section, XElement element, string childId, bool groupType=false) + private void ParseGroupRefElement(Intermediate intermediate, IntermediateSection section, XElement element, string childId, bool groupType) { var sourceLineNumbers = this.ParseHelper.GetSourceLineNumbers(element); string groupId = null; @@ -3588,7 +3588,7 @@ namespace WixToolset.Util this.Messaging.Write(UtilErrors.IllegalElementWithoutComponent(childSourceLineNumbers, child.Name.LocalName)); } - this.ParseGroupRefElement(intermediate, section, child, id.Id, groupType:false); + this.ParseGroupRefElement(intermediate, section, child, id.Id, groupType: false); break; default: this.ParseHelper.UnexpectedElement(element, child); -- cgit v1.2.3-55-g6feb