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/MsiServiceConfigFailureActionsTuple.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/MsiServiceConfigFailureActionsTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs b/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs index bcf32cb6..85484381 100644 --- a/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs +++ b/src/WixToolset.Data/Tuples/MsiServiceConfigFailureActionsTuple.cs | |||
| @@ -55,7 +55,7 @@ namespace WixToolset.Data.Tuples | |||
| 55 | 55 | ||
| 56 | public string Name | 56 | public string Name |
| 57 | { | 57 | { |
| 58 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Name]?.Value; | 58 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Name]; |
| 59 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Name, value); | 59 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Name, value); |
| 60 | } | 60 | } |
| 61 | 61 | ||
| @@ -85,31 +85,31 @@ namespace WixToolset.Data.Tuples | |||
| 85 | 85 | ||
| 86 | public string RebootMessage | 86 | public string RebootMessage |
| 87 | { | 87 | { |
| 88 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.RebootMessage]?.Value; | 88 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.RebootMessage]; |
| 89 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.RebootMessage, value); | 89 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.RebootMessage, value); |
| 90 | } | 90 | } |
| 91 | 91 | ||
| 92 | public string Command | 92 | public string Command |
| 93 | { | 93 | { |
| 94 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Command]?.Value; | 94 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Command]; |
| 95 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Command, value); | 95 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Command, value); |
| 96 | } | 96 | } |
| 97 | 97 | ||
| 98 | public string Actions | 98 | public string Actions |
| 99 | { | 99 | { |
| 100 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Actions]?.Value; | 100 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Actions]; |
| 101 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Actions, value); | 101 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Actions, value); |
| 102 | } | 102 | } |
| 103 | 103 | ||
| 104 | public string DelayActions | 104 | public string DelayActions |
| 105 | { | 105 | { |
| 106 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.DelayActions]?.Value; | 106 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.DelayActions]; |
| 107 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.DelayActions, value); | 107 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.DelayActions, value); |
| 108 | } | 108 | } |
| 109 | 109 | ||
| 110 | public string Component_ | 110 | public string Component_ |
| 111 | { | 111 | { |
| 112 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Component_]?.Value; | 112 | get => (string)this.Fields[(int)MsiServiceConfigFailureActionsTupleFields.Component_]; |
| 113 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Component_, value); | 113 | set => this.Set((int)MsiServiceConfigFailureActionsTupleFields.Component_, value); |
| 114 | } | 114 | } |
| 115 | } | 115 | } |
