aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-01-31 21:35:23 -0500
committerBob Arnson <bob@firegiant.com>2021-01-31 21:35:23 -0500
commit1a170f2a5afce8e4beb0100229e3c420629b7c88 (patch)
tree90db75f8545456086d649383bdb38f2e1d408a74
parentbf5c60ffc7488fc9eb12b7104ba7d567f11cc85e (diff)
downloadwix-1a170f2a5afce8e4beb0100229e3c420629b7c88.tar.gz
wix-1a170f2a5afce8e4beb0100229e3c420629b7c88.tar.bz2
wix-1a170f2a5afce8e4beb0100229e3c420629b7c88.zip
Address code-review comments.
-rw-r--r--src/WixToolset.Converters/WixConverter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Converters/WixConverter.cs b/src/WixToolset.Converters/WixConverter.cs
index be3e6b70..73daa9a2 100644
--- a/src/WixToolset.Converters/WixConverter.cs
+++ b/src/WixToolset.Converters/WixConverter.cs
@@ -648,7 +648,7 @@ namespace WixToolset.Converters
648 648
649 private void ConvertCatalogElement(XElement element) 649 private void ConvertCatalogElement(XElement element)
650 { 650 {
651 if (this.OnError(ConverterTestType.BundleSignatureValidationObsolete, element, "The Catalog element is obsolete. Signature validation is no longer supported. The elkement will be removed.")) 651 if (this.OnError(ConverterTestType.BundleSignatureValidationObsolete, element, "The Catalog element is obsolete. Signature validation is no longer supported. The element will be removed."))
652 { 652 {
653 element.Remove(); 653 element.Remove();
654 } 654 }