aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.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/WixDeltaPatchFileTuple.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/WixDeltaPatchFileTuple.cs')
-rw-r--r--src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs b/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs
index 68f327f4..a8e191df 100644
--- a/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs
+++ b/src/WixToolset.Data/Tuples/WixDeltaPatchFileTuple.cs
@@ -47,37 +47,37 @@ namespace WixToolset.Data.Tuples
47 47
48 public string File_ 48 public string File_
49 { 49 {
50 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.File_]?.Value; 50 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.File_];
51 set => this.Set((int)WixDeltaPatchFileTupleFields.File_, value); 51 set => this.Set((int)WixDeltaPatchFileTupleFields.File_, value);
52 } 52 }
53 53
54 public string RetainLengths 54 public string RetainLengths
55 { 55 {
56 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.RetainLengths]?.Value; 56 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.RetainLengths];
57 set => this.Set((int)WixDeltaPatchFileTupleFields.RetainLengths, value); 57 set => this.Set((int)WixDeltaPatchFileTupleFields.RetainLengths, value);
58 } 58 }
59 59
60 public string IgnoreOffsets 60 public string IgnoreOffsets
61 { 61 {
62 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.IgnoreOffsets]?.Value; 62 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.IgnoreOffsets];
63 set => this.Set((int)WixDeltaPatchFileTupleFields.IgnoreOffsets, value); 63 set => this.Set((int)WixDeltaPatchFileTupleFields.IgnoreOffsets, value);
64 } 64 }
65 65
66 public string IgnoreLengths 66 public string IgnoreLengths
67 { 67 {
68 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.IgnoreLengths]?.Value; 68 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.IgnoreLengths];
69 set => this.Set((int)WixDeltaPatchFileTupleFields.IgnoreLengths, value); 69 set => this.Set((int)WixDeltaPatchFileTupleFields.IgnoreLengths, value);
70 } 70 }
71 71
72 public string RetainOffsets 72 public string RetainOffsets
73 { 73 {
74 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.RetainOffsets]?.Value; 74 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.RetainOffsets];
75 set => this.Set((int)WixDeltaPatchFileTupleFields.RetainOffsets, value); 75 set => this.Set((int)WixDeltaPatchFileTupleFields.RetainOffsets, value);
76 } 76 }
77 77
78 public string SymbolPaths 78 public string SymbolPaths
79 { 79 {
80 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.SymbolPaths]?.Value; 80 get => (string)this.Fields[(int)WixDeltaPatchFileTupleFields.SymbolPaths];
81 set => this.Set((int)WixDeltaPatchFileTupleFields.SymbolPaths, value); 81 set => this.Set((int)WixDeltaPatchFileTupleFields.SymbolPaths, value);
82 } 82 }
83 } 83 }