aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Util/wixext/UtilCompiler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Util/wixext/UtilCompiler.cs')
-rw-r--r--src/ext/Util/wixext/UtilCompiler.cs6
1 files changed, 3 insertions, 3 deletions
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
1485 switch (child.Name.LocalName) 1485 switch (child.Name.LocalName)
1486 { 1486 {
1487 case "GroupRef": 1487 case "GroupRef":
1488 this.ParseGroupRefElement(intermediate, section, child, id.Id, groupType:true); 1488 this.ParseGroupRefElement(intermediate, section, child, id.Id, groupType: true);
1489 break; 1489 break;
1490 default: 1490 default:
1491 this.ParseHelper.UnexpectedElement(element, child); 1491 this.ParseHelper.UnexpectedElement(element, child);
@@ -1521,7 +1521,7 @@ namespace WixToolset.Util
1521 /// <param name="element">Element to parse.</param> 1521 /// <param name="element">Element to parse.</param>
1522 /// <param name="childId">Required child id to be joined to the group.</param> 1522 /// <param name="childId">Required child id to be joined to the group.</param>
1523 /// <param name="groupType">whether the child is a group (true) or a user (false)</param> 1523 /// <param name="groupType">whether the child is a group (true) or a user (false)</param>
1524 private void ParseGroupRefElement(Intermediate intermediate, IntermediateSection section, XElement element, string childId, bool groupType=false) 1524 private void ParseGroupRefElement(Intermediate intermediate, IntermediateSection section, XElement element, string childId, bool groupType)
1525 { 1525 {
1526 var sourceLineNumbers = this.ParseHelper.GetSourceLineNumbers(element); 1526 var sourceLineNumbers = this.ParseHelper.GetSourceLineNumbers(element);
1527 string groupId = null; 1527 string groupId = null;
@@ -3588,7 +3588,7 @@ namespace WixToolset.Util
3588 this.Messaging.Write(UtilErrors.IllegalElementWithoutComponent(childSourceLineNumbers, child.Name.LocalName)); 3588 this.Messaging.Write(UtilErrors.IllegalElementWithoutComponent(childSourceLineNumbers, child.Name.LocalName));
3589 } 3589 }
3590 3590
3591 this.ParseGroupRefElement(intermediate, section, child, id.Id, groupType:false); 3591 this.ParseGroupRefElement(intermediate, section, child, id.Id, groupType: false);
3592 break; 3592 break;
3593 default: 3593 default:
3594 this.ParseHelper.UnexpectedElement(element, child); 3594 this.ParseHelper.UnexpectedElement(element, child);