aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/RegistryTuple.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Tuples/RegistryTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/RegistryTuple.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/RegistryTuple.cs b/src/WixToolset.Data/Tuples/RegistryTuple.cs
index d76de213..adb00f49 100644
--- a/src/WixToolset.Data/Tuples/RegistryTuple.cs
+++ b/src/WixToolset.Data/Tuples/RegistryTuple.cs
@@ -71,13 +71,13 @@ namespace WixToolset.Data.Tuples
71 71
72 public string Key 72 public string Key
73 { 73 {
74 get => (string)this.Fields[(int)RegistryTupleFields.Key]?.Value; 74 get => (string)this.Fields[(int)RegistryTupleFields.Key];
75 set => this.Set((int)RegistryTupleFields.Key, value); 75 set => this.Set((int)RegistryTupleFields.Key, value);
76 } 76 }
77 77
78 public string Name 78 public string Name
79 { 79 {
80 get => (string)this.Fields[(int)RegistryTupleFields.Name]?.Value; 80 get => (string)this.Fields[(int)RegistryTupleFields.Name];
81 set => this.Set((int)RegistryTupleFields.Name, value); 81 set => this.Set((int)RegistryTupleFields.Name, value);
82 } 82 }
83 83
@@ -101,7 +101,7 @@ namespace WixToolset.Data.Tuples
101 101
102 public string Component_ 102 public string Component_
103 { 103 {
104 get => (string)this.Fields[(int)RegistryTupleFields.Component_]?.Value; 104 get => (string)this.Fields[(int)RegistryTupleFields.Component_];
105 set => this.Set((int)RegistryTupleFields.Component_, value); 105 set => this.Set((int)RegistryTupleFields.Component_, value);
106 } 106 }
107 } 107 }