diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs b/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs index e3552d10..de13cdb0 100644 --- a/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs +++ b/src/WixToolset.Data/Tuples/RemoveRegistryTuple.cs | |||
@@ -57,13 +57,13 @@ namespace WixToolset.Data.Tuples | |||
57 | 57 | ||
58 | public string Key | 58 | public string Key |
59 | { | 59 | { |
60 | get => (string)this.Fields[(int)RemoveRegistryTupleFields.Key]?.Value; | 60 | get => (string)this.Fields[(int)RemoveRegistryTupleFields.Key]; |
61 | set => this.Set((int)RemoveRegistryTupleFields.Key, value); | 61 | set => this.Set((int)RemoveRegistryTupleFields.Key, value); |
62 | } | 62 | } |
63 | 63 | ||
64 | public string Name | 64 | public string Name |
65 | { | 65 | { |
66 | get => (string)this.Fields[(int)RemoveRegistryTupleFields.Name]?.Value; | 66 | get => (string)this.Fields[(int)RemoveRegistryTupleFields.Name]; |
67 | set => this.Set((int)RemoveRegistryTupleFields.Name, value); | 67 | set => this.Set((int)RemoveRegistryTupleFields.Name, value); |
68 | } | 68 | } |
69 | 69 | ||
@@ -75,7 +75,7 @@ namespace WixToolset.Data.Tuples | |||
75 | 75 | ||
76 | public string Component_ | 76 | public string Component_ |
77 | { | 77 | { |
78 | get => (string)this.Fields[(int)RemoveRegistryTupleFields.Component_]?.Value; | 78 | get => (string)this.Fields[(int)RemoveRegistryTupleFields.Component_]; |
79 | set => this.Set((int)RemoveRegistryTupleFields.Component_, value); | 79 | set => this.Set((int)RemoveRegistryTupleFields.Component_, value); |
80 | } | 80 | } |
81 | } | 81 | } |