diff options
author | Rob Mensching <rob@firegiant.com> | 2019-05-16 12:18:36 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-05-23 15:43:40 -0700 |
commit | 505fe69d85c90184cd37290ccb0120fec6074c20 (patch) | |
tree | 685314724a00232c2cad02e73c88214bee25df4f /src/WixToolset.Data/Tuples/CompLocatorTuple.cs | |
parent | ac1400ac5502db2f975e94dc803c155fd6a0a0e0 (diff) | |
download | wix-505fe69d85c90184cd37290ccb0120fec6074c20.tar.gz wix-505fe69d85c90184cd37290ccb0120fec6074c20.tar.bz2 wix-505fe69d85c90184cd37290ccb0120fec6074c20.zip |
Remove redundant `?.Value` from strongly typed accesses
Diffstat (limited to 'src/WixToolset.Data/Tuples/CompLocatorTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/CompLocatorTuple.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/Tuples/CompLocatorTuple.cs b/src/WixToolset.Data/Tuples/CompLocatorTuple.cs index 37bc2a37..4a92d132 100644 --- a/src/WixToolset.Data/Tuples/CompLocatorTuple.cs +++ b/src/WixToolset.Data/Tuples/CompLocatorTuple.cs | |||
@@ -39,7 +39,7 @@ namespace WixToolset.Data.Tuples | |||
39 | 39 | ||
40 | public string ComponentId | 40 | public string ComponentId |
41 | { | 41 | { |
42 | get => (string)this.Fields[(int)CompLocatorTupleFields.ComponentId]?.Value; | 42 | get => (string)this.Fields[(int)CompLocatorTupleFields.ComponentId]; |
43 | set => this.Set((int)CompLocatorTupleFields.ComponentId, value); | 43 | set => this.Set((int)CompLocatorTupleFields.ComponentId, value); |
44 | } | 44 | } |
45 | 45 | ||