diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-11-11 01:45:59 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-11-11 01:45:59 -0800 |
| commit | 9f8cb5374481b6c8a06eb2739858332350f72666 (patch) | |
| tree | 4b09b90d8a516cb5e7d8203759bd2489b6a5d20c /src/WixToolset.Data.WindowsInstaller/RowDictionary.cs | |
| parent | 2bb37beda887d120a0ddabf874ad25357101faa1 (diff) | |
| download | wix-9f8cb5374481b6c8a06eb2739858332350f72666.tar.gz wix-9f8cb5374481b6c8a06eb2739858332350f72666.tar.bz2 wix-9f8cb5374481b6c8a06eb2739858332350f72666.zip | |
Additional IR updates
Diffstat (limited to 'src/WixToolset.Data.WindowsInstaller/RowDictionary.cs')
| -rw-r--r-- | src/WixToolset.Data.WindowsInstaller/RowDictionary.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WixToolset.Data.WindowsInstaller/RowDictionary.cs b/src/WixToolset.Data.WindowsInstaller/RowDictionary.cs index a0cc5302..5756db71 100644 --- a/src/WixToolset.Data.WindowsInstaller/RowDictionary.cs +++ b/src/WixToolset.Data.WindowsInstaller/RowDictionary.cs | |||
| @@ -77,8 +77,7 @@ namespace WixToolset.Data | |||
| 77 | /// <returns>Row or null if key is not found.</returns> | 77 | /// <returns>Row or null if key is not found.</returns> |
| 78 | public T Get(string key) | 78 | public T Get(string key) |
| 79 | { | 79 | { |
| 80 | T result; | 80 | return this.TryGetValue(key, out var result) ? result : null; |
| 81 | return this.TryGetValue(key, out result) ? result : null; | ||
| 82 | } | 81 | } |
| 83 | } | 82 | } |
| 84 | } | 83 | } |
