aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/PatchSequenceTuple.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-16 12:18:36 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commit505fe69d85c90184cd37290ccb0120fec6074c20 (patch)
tree685314724a00232c2cad02e73c88214bee25df4f /src/WixToolset.Data/Tuples/PatchSequenceTuple.cs
parentac1400ac5502db2f975e94dc803c155fd6a0a0e0 (diff)
downloadwix-505fe69d85c90184cd37290ccb0120fec6074c20.tar.gz
wix-505fe69d85c90184cd37290ccb0120fec6074c20.tar.bz2
wix-505fe69d85c90184cd37290ccb0120fec6074c20.zip
Remove redundant `?.Value` from strongly typed accesses
Diffstat (limited to 'src/WixToolset.Data/Tuples/PatchSequenceTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/PatchSequenceTuple.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Data/Tuples/PatchSequenceTuple.cs b/src/WixToolset.Data/Tuples/PatchSequenceTuple.cs
index 624054c1..857e8d6e 100644
--- a/src/WixToolset.Data/Tuples/PatchSequenceTuple.cs
+++ b/src/WixToolset.Data/Tuples/PatchSequenceTuple.cs
@@ -43,25 +43,25 @@ namespace WixToolset.Data.Tuples
43 43
44 public string PatchFamily 44 public string PatchFamily
45 { 45 {
46 get => (string)this.Fields[(int)PatchSequenceTupleFields.PatchFamily]?.Value; 46 get => (string)this.Fields[(int)PatchSequenceTupleFields.PatchFamily];
47 set => this.Set((int)PatchSequenceTupleFields.PatchFamily, value); 47 set => this.Set((int)PatchSequenceTupleFields.PatchFamily, value);
48 } 48 }
49 49
50 public string Target 50 public string Target
51 { 51 {
52 get => (string)this.Fields[(int)PatchSequenceTupleFields.Target]?.Value; 52 get => (string)this.Fields[(int)PatchSequenceTupleFields.Target];
53 set => this.Set((int)PatchSequenceTupleFields.Target, value); 53 set => this.Set((int)PatchSequenceTupleFields.Target, value);
54 } 54 }
55 55
56 public string Sequence 56 public string Sequence
57 { 57 {
58 get => (string)this.Fields[(int)PatchSequenceTupleFields.Sequence]?.Value; 58 get => (string)this.Fields[(int)PatchSequenceTupleFields.Sequence];
59 set => this.Set((int)PatchSequenceTupleFields.Sequence, value); 59 set => this.Set((int)PatchSequenceTupleFields.Sequence, value);
60 } 60 }
61 61
62 public int Supersede 62 public int Supersede
63 { 63 {
64 get => (int)this.Fields[(int)PatchSequenceTupleFields.Supersede]?.Value; 64 get => (int)this.Fields[(int)PatchSequenceTupleFields.Supersede];
65 set => this.Set((int)PatchSequenceTupleFields.Supersede, value); 65 set => this.Set((int)PatchSequenceTupleFields.Supersede, value);
66 } 66 }
67 } 67 }