diff options
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 | } |