aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/CompLocatorTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/CompLocatorTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/CompLocatorTuple.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/Tuples/CompLocatorTuple.cs b/src/WixToolset.Data/Tuples/CompLocatorTuple.cs
index 37bc2a37..4a92d132 100644
--- a/src/WixToolset.Data/Tuples/CompLocatorTuple.cs
+++ b/src/WixToolset.Data/Tuples/CompLocatorTuple.cs
@@ -39,7 +39,7 @@ namespace WixToolset.Data.Tuples
39 39
40 public string ComponentId 40 public string ComponentId
41 { 41 {
42 get => (string)this.Fields[(int)CompLocatorTupleFields.ComponentId]?.Value; 42 get => (string)this.Fields[(int)CompLocatorTupleFields.ComponentId];
43 set => this.Set((int)CompLocatorTupleFields.ComponentId, value); 43 set => this.Set((int)CompLocatorTupleFields.ComponentId, value);
44 } 44 }
45 45