aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CompilerCore.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-23 00:56:36 -0700
committerRob Mensching <rob@firegiant.com>2020-06-23 02:10:31 -0700
commited0fb39537c0cfb13922537a26f9d895180d42d8 (patch)
tree7bc1015a1a548c6b1d38b7f9608afe34ffbf6ea0 /src/WixToolset.Core/CompilerCore.cs
parent9319732abb1eee646b3540b8511b328833a1acfb (diff)
downloadwix-ed0fb39537c0cfb13922537a26f9d895180d42d8.tar.gz
wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.tar.bz2
wix-ed0fb39537c0cfb13922537a26f9d895180d42d8.zip
Remove obsolete inner text handling
Diffstat (limited to 'src/WixToolset.Core/CompilerCore.cs')
-rw-r--r--src/WixToolset.Core/CompilerCore.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/WixToolset.Core/CompilerCore.cs b/src/WixToolset.Core/CompilerCore.cs
index 93f9276c..5d0edaf1 100644
--- a/src/WixToolset.Core/CompilerCore.cs
+++ b/src/WixToolset.Core/CompilerCore.cs
@@ -322,26 +322,6 @@ namespace WixToolset.Core
322 } 322 }
323 323
324 /// <summary> 324 /// <summary>
325 /// Get an element's inner text and trims any extra whitespace.
326 /// </summary>
327 /// <param name="element">The element with inner text to be trimmed.</param>
328 /// <returns>The node's inner text trimmed.</returns>
329 public string GetTrimmedInnerText(XElement element)
330 {
331 return this.parseHelper.GetTrimmedInnerText(element);
332 }
333
334 /// <summary>
335 /// Gets element's inner text and ensure's it is safe for use in a condition by trimming any extra whitespace.
336 /// </summary>
337 /// <param name="element">The element to ensure inner text is a condition.</param>
338 /// <returns>The value converted into a safe condition.</returns>
339 public string GetConditionInnerText(XElement element)
340 {
341 return this.parseHelper.GetConditionInnerText(element);
342 }
343
344 /// <summary>
345 /// Creates a version 3 name-based UUID. 325 /// Creates a version 3 name-based UUID.
346 /// </summary> 326 /// </summary>
347 /// <param name="namespaceGuid">The namespace UUID.</param> 327 /// <param name="namespaceGuid">The namespace UUID.</param>