laimis commented on code in PR #829:
URL: https://github.com/apache/lucenenet/pull/829#discussion_r1165921148


##########
src/Lucene.Net.QueryParser/Xml/QueryTemplateManager.cs:
##########
@@ -34,20 +35,28 @@ namespace Lucene.Net.QueryParsers.Xml
     public class QueryTemplateManager
     {
         private readonly IDictionary<string, XslCompiledTransform> 
compiledTemplatesCache = new Dictionary<string, XslCompiledTransform>(); // 
LUCENENET: marked readonly
-        private XslCompiledTransform defaultCompiledTemplates;
+        // LUCENENET specific - made protected to allow subclasses to access 
and initialize
+        protected XslCompiledTransform m_defaultCompiledTemplates;

Review Comment:
   oh ok, so basically no need to make this variable protected. Adjusting now...



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to