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/ModuleIgnoreTableTuple.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/ModuleIgnoreTableTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs b/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs index ec82c94b..d4262448 100644 --- a/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs +++ b/src/WixToolset.Data/Tuples/ModuleIgnoreTableTuple.cs | |||
| @@ -37,7 +37,7 @@ namespace WixToolset.Data.Tuples | |||
| 37 | 37 | ||
| 38 | public string Table | 38 | public string Table |
| 39 | { | 39 | { |
| 40 | get => (string)this.Fields[(int)ModuleIgnoreTableTupleFields.Table]?.Value; | 40 | get => (string)this.Fields[(int)ModuleIgnoreTableTupleFields.Table]; |
| 41 | set => this.Set((int)ModuleIgnoreTableTupleFields.Table, value); | 41 | set => this.Set((int)ModuleIgnoreTableTupleFields.Table, value); |
| 42 | } | 42 | } |
| 43 | } | 43 | } |
