aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/TableIndexedCollection.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-12-27 13:13:41 -0800
committerRob Mensching <rob@firegiant.com>2017-12-27 13:13:41 -0800
commitb2ff456469c4905be6df44f851cbf42bbcd629ee (patch)
treee196a0ff99ee130e517f1fa9f6281163dd4a77b8 /src/WixToolset.Data/WindowsInstaller/TableIndexedCollection.cs
parent9c44ebe3f4e47d22cf9b74918ac30e8bf36ffe5b (diff)
downloadwix-b2ff456469c4905be6df44f851cbf42bbcd629ee.tar.gz
wix-b2ff456469c4905be6df44f851cbf42bbcd629ee.tar.bz2
wix-b2ff456469c4905be6df44f851cbf42bbcd629ee.zip
Make TableDefinitions ColumnDefinitions an array and other minor cleanup
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/TableIndexedCollection.cs')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/TableIndexedCollection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/TableIndexedCollection.cs b/src/WixToolset.Data/WindowsInstaller/TableIndexedCollection.cs
index 1b7de72b..57ba19d1 100644
--- a/src/WixToolset.Data/WindowsInstaller/TableIndexedCollection.cs
+++ b/src/WixToolset.Data/WindowsInstaller/TableIndexedCollection.cs
@@ -17,7 +17,7 @@ namespace WixToolset.Data.WindowsInstaller
17 /// </summary> 17 /// </summary>
18 public TableIndexedCollection() 18 public TableIndexedCollection()
19 { 19 {
20 this.collection = new Dictionary<string,Table>(); 20 this.collection = new Dictionary<string, Table>();
21 } 21 }
22 22
23 /// <summary> 23 /// <summary>