diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/EnvironmentTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/EnvironmentTuple.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/EnvironmentTuple.cs b/src/WixToolset.Data/Tuples/EnvironmentTuple.cs index 7e3443d8..56b9f7d2 100644 --- a/src/WixToolset.Data/Tuples/EnvironmentTuple.cs +++ b/src/WixToolset.Data/Tuples/EnvironmentTuple.cs | |||
@@ -65,19 +65,19 @@ namespace WixToolset.Data.Tuples | |||
65 | 65 | ||
66 | public string Name | 66 | public string Name |
67 | { | 67 | { |
68 | get => (string)this.Fields[(int)EnvironmentTupleFields.Name]?.Value; | 68 | get => (string)this.Fields[(int)EnvironmentTupleFields.Name]; |
69 | set => this.Set((int)EnvironmentTupleFields.Name, value); | 69 | set => this.Set((int)EnvironmentTupleFields.Name, value); |
70 | } | 70 | } |
71 | 71 | ||
72 | public string Value | 72 | public string Value |
73 | { | 73 | { |
74 | get => (string)this.Fields[(int)EnvironmentTupleFields.Value]?.Value; | 74 | get => (string)this.Fields[(int)EnvironmentTupleFields.Value]; |
75 | set => this.Set((int)EnvironmentTupleFields.Value, value); | 75 | set => this.Set((int)EnvironmentTupleFields.Value, value); |
76 | } | 76 | } |
77 | 77 | ||
78 | public string Separator | 78 | public string Separator |
79 | { | 79 | { |
80 | get => (string)this.Fields[(int)EnvironmentTupleFields.Separator]?.Value; | 80 | get => (string)this.Fields[(int)EnvironmentTupleFields.Separator]; |
81 | set => this.Set((int)EnvironmentTupleFields.Separator, value); | 81 | set => this.Set((int)EnvironmentTupleFields.Separator, value); |
82 | } | 82 | } |
83 | 83 | ||
@@ -107,7 +107,7 @@ namespace WixToolset.Data.Tuples | |||
107 | 107 | ||
108 | public string Component_ | 108 | public string Component_ |
109 | { | 109 | { |
110 | get => (string)this.Fields[(int)EnvironmentTupleFields.Component_]?.Value; | 110 | get => (string)this.Fields[(int)EnvironmentTupleFields.Component_]; |
111 | set => this.Set((int)EnvironmentTupleFields.Component_, value); | 111 | set => this.Set((int)EnvironmentTupleFields.Component_, value); |
112 | } | 112 | } |
113 | } | 113 | } |