This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit 556bf82d3032f3e60c4a38a508980ccd7bb60bc7
Author: Shad Storhaug <[email protected]>
AuthorDate: Fri Sep 11 04:53:30 2020 +0700

    Lucene.Net.Tests.QueryParser.Xml.TestQueryTemplateManager: Changed 
conditional compilation to FEATURE_XSLT
---
 .../Xml/TestQueryTemplateManager.cs                            | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/src/Lucene.Net.Tests.QueryParser/Xml/TestQueryTemplateManager.cs 
b/src/Lucene.Net.Tests.QueryParser/Xml/TestQueryTemplateManager.cs
index 863de78..a47f45f 100644
--- a/src/Lucene.Net.Tests.QueryParser/Xml/TestQueryTemplateManager.cs
+++ b/src/Lucene.Net.Tests.QueryParser/Xml/TestQueryTemplateManager.cs
@@ -1,4 +1,4 @@
-#if !NETSTANDARD1_6
+#if FEATURE_XSLT
 using J2N.Text;
 using Lucene.Net.Analysis;
 using Lucene.Net.Documents;
@@ -9,10 +9,6 @@ using Lucene.Net.Util;
 using NUnit.Framework;
 using System;
 using System.Collections.Generic;
-using System.Linq;
-using System.Reflection;
-using System.Text;
-using System.Threading.Tasks;
 using System.Xml;
 
 namespace Lucene.Net.QueryParsers.Xml
@@ -38,8 +34,8 @@ namespace Lucene.Net.QueryParsers.Xml
     /// This class illustrates how form input (such as from a web page or 
Swing gui) can be
     /// turned into Lucene queries using a choice of XSL templates for 
different styles of queries.
     /// 
-    /// LUCENENET (.NET Core):  This is not compiled this because .NET Standard
-    /// does not currently support XSL Transform.
+    /// LUCENENET (.NET Standard 1.x):  This is not compiled this because .NET 
Standard 1.x
+    /// does not support XSL Transform.
     /// </summary>
     public class TestQueryTemplateManager : LuceneTestCase
     {

Reply via email to