diff options
author | Rob Mensching <rob@firegiant.com> | 2022-11-07 23:05:41 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-11-08 00:19:10 -0800 |
commit | 86146e8c044a1aea2ea162701b1fc344d19e4dc3 (patch) | |
tree | 766bcea3c3a1c6dbb89e8156325324d44b56b1aa /src/ext/Http/wixext | |
parent | 55d1af260bc383dab269fbf0f371c2b1d84a3fed (diff) | |
download | wix-86146e8c044a1aea2ea162701b1fc344d19e4dc3.tar.gz wix-86146e8c044a1aea2ea162701b1fc344d19e4dc3.tar.bz2 wix-86146e8c044a1aea2ea162701b1fc344d19e4dc3.zip |
Very minor cleanup
Diffstat (limited to 'src/ext/Http/wixext')
-rw-r--r-- | src/ext/Http/wixext/HttpCompiler.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ext/Http/wixext/HttpCompiler.cs b/src/ext/Http/wixext/HttpCompiler.cs index 6c572470..51fdfebc 100644 --- a/src/ext/Http/wixext/HttpCompiler.cs +++ b/src/ext/Http/wixext/HttpCompiler.cs | |||
@@ -81,7 +81,6 @@ namespace WixToolset.Http | |||
81 | string store = null; | 81 | string store = null; |
82 | string thumbprint = null; | 82 | string thumbprint = null; |
83 | var handleExisting = HandleExisting.Replace; | 83 | var handleExisting = HandleExisting.Replace; |
84 | string handleExistingValue = null; | ||
85 | 84 | ||
86 | foreach (var attrib in node.Attributes()) | 85 | foreach (var attrib in node.Attributes()) |
87 | { | 86 | { |
@@ -96,7 +95,7 @@ namespace WixToolset.Http | |||
96 | appId = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); | 95 | appId = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); |
97 | break; | 96 | break; |
98 | case "HandleExisting": | 97 | case "HandleExisting": |
99 | handleExistingValue = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); | 98 | var handleExistingValue = this.ParseHelper.GetAttributeValue(sourceLineNumbers, attrib); |
100 | switch (handleExistingValue) | 99 | switch (handleExistingValue) |
101 | { | 100 | { |
102 | case "replace": | 101 | case "replace": |