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


The following commit(s) were added to refs/heads/master by this push:
     new 67b28e4  BREAKING: Lucene.Net.IndexWriter.IEvent: Marked internal (as 
it was in Java). This interface is only used in non-public contexts by Lucene.
67b28e4 is described below

commit 67b28e4df56b94a99c8123029db9b1f7f6c6c690
Author: Shad Storhaug <[email protected]>
AuthorDate: Mon Mar 7 22:19:33 2022 +0700

    BREAKING: Lucene.Net.IndexWriter.IEvent: Marked internal (as it was in 
Java). This interface is only used in non-public contexts by Lucene.
---
 src/Lucene.Net/Index/IndexWriter.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Lucene.Net/Index/IndexWriter.cs 
b/src/Lucene.Net/Index/IndexWriter.cs
index 20284d5..d1c7adc 100644
--- a/src/Lucene.Net/Index/IndexWriter.cs
+++ b/src/Lucene.Net/Index/IndexWriter.cs
@@ -6375,7 +6375,7 @@ namespace Lucene.Net.Index
         /// Each event should only rely on the serializeability within it's 
process method. All actions that must happen before or after a certain action 
must be
         /// encoded inside the <see cref="Process(IndexWriter, bool, bool)"/> 
method.
         /// </summary>
-        public interface IEvent
+        internal interface IEvent
         {
             /// <summary>
             /// Processes the event. this method is called by the <see 
cref="IndexWriter"/>

Reply via email to