diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/ConditionTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/ConditionTuple.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Data/Tuples/ConditionTuple.cs b/src/WixToolset.Data/Tuples/ConditionTuple.cs index 534f4cae..f62174f6 100644 --- a/src/WixToolset.Data/Tuples/ConditionTuple.cs +++ b/src/WixToolset.Data/Tuples/ConditionTuple.cs | |||
@@ -41,19 +41,19 @@ namespace WixToolset.Data.Tuples | |||
41 | 41 | ||
42 | public string Feature_ | 42 | public string Feature_ |
43 | { | 43 | { |
44 | get => (string)this.Fields[(int)ConditionTupleFields.Feature_]?.Value; | 44 | get => (string)this.Fields[(int)ConditionTupleFields.Feature_]; |
45 | set => this.Set((int)ConditionTupleFields.Feature_, value); | 45 | set => this.Set((int)ConditionTupleFields.Feature_, value); |
46 | } | 46 | } |
47 | 47 | ||
48 | public int Level | 48 | public int Level |
49 | { | 49 | { |
50 | get => (int)this.Fields[(int)ConditionTupleFields.Level]?.Value; | 50 | get => (int)this.Fields[(int)ConditionTupleFields.Level]; |
51 | set => this.Set((int)ConditionTupleFields.Level, value); | 51 | set => this.Set((int)ConditionTupleFields.Level, value); |
52 | } | 52 | } |
53 | 53 | ||
54 | public string Condition | 54 | public string Condition |
55 | { | 55 | { |
56 | get => (string)this.Fields[(int)ConditionTupleFields.Condition]?.Value; | 56 | get => (string)this.Fields[(int)ConditionTupleFields.Condition]; |
57 | set => this.Set((int)ConditionTupleFields.Condition, value); | 57 | set => this.Set((int)ConditionTupleFields.Condition, value); |
58 | } | 58 | } |
59 | } | 59 | } |