Minor code cleanup
Rob Mensching committed
May 23, 2020 at 01:53 UTC
f08e7529967fa9870faeee6dfa00f326c65cef1e
2 files changed
+1
-5
src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
+1
-2
@@ -155,7 +155,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
155
{
156
propertyRow.Value = Common.GenerateGuid();
157
158
-#if TODO_FIX_INSTANCE_TRANSFORM // Is this still necessary?
158
+#if TODO_PATCHING // Is this still necessary?
159
160
// Update the target ProductCode in any instance transforms.
161
foreach (SubStorage subStorage in this.Output.SubStorages)
@@ -294,7 +294,6 @@ namespace WixToolset.Core.WindowsInstaller.Bind
294
command.FileFacades = fileFacades;
295
command.UpdateFileFacades = fileFacades.Where(f => !f.FromModule);
296
command.OverwriteHash = true;
297
- command.TableDefinitions = tableDefinitions;
297
command.VariableCache = variableCache;
298
command.Execute();
299
}
src/WixToolset.Core.WindowsInstaller/Bind/UpdateFileFacadesCommand.cs
-3
@@ -12,7 +12,6 @@ namespace WixToolset.Core.WindowsInstaller.Bind
12
using WixToolset.Core.WindowsInstaller.Msi;
13
using WixToolset.Data;
14
using WixToolset.Data.Tuples;
15
- using WixToolset.Data.WindowsInstaller;
15
using WixToolset.Extensibility.Services;
16
17
/// <summary>
@@ -36,8 +35,6 @@ namespace WixToolset.Core.WindowsInstaller.Bind
35
36
public bool OverwriteHash { private get; set; }
37
39
- public TableDefinitionCollection TableDefinitions { private get; set; }
40
-
38
public IDictionary<string, string> VariableCache { private get; set; }
39
40
public void Execute()