From d0d447ad64afdd5956856c4c6b6599f69a522d6b Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Mon, 13 Apr 2020 11:36:20 +1000 Subject: Change TableDefinition to have TupleDefinition instead of TupleDefinitionName. --- .../WindowsInstaller/TableDefinitionCollection.cs | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs') diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs index e1119a68..91385d74 100644 --- a/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs +++ b/src/WixToolset.Data/WindowsInstaller/TableDefinitionCollection.cs @@ -76,19 +76,6 @@ namespace WixToolset.Data.WindowsInstaller /// True if table definition was found otherwise false. public bool TryGet(string tableName, out TableDefinition table) => this.collection.TryGetValue(tableName, out table); - /// - /// Load a table definition collection from an XmlReader. - /// - /// Reader to get data from. - /// Suppress xml schema validation while loading. - /// The TableDefinitionCollection represented by the xml. - public static TableDefinitionCollection Load(XmlReader reader) - { - reader.MoveToContent(); - - return Read(reader); - } - /// /// Adds a table definition to the collection. /// -- cgit v1.2.3-55-g6feb