You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2020/02/28 14:34:54 UTC

[lucene-solr] branch master updated: LUCENE-9247: Fix class visibility issue discovered when backporting.

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

jpountz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 30944d3  LUCENE-9247: Fix class visibility issue discovered when backporting.
30944d3 is described below

commit 30944d35207cb3ca4f6522f354437b050a7c5cc1
Author: Adrien Grand <jp...@gmail.com>
AuthorDate: Fri Feb 28 15:25:55 2020 +0100

    LUCENE-9247: Fix class visibility issue discovered when backporting.
---
 .../src/java/org/apache/lucene/index/BaseIndexFileFormatTestCase.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/test-framework/src/java/org/apache/lucene/index/BaseIndexFileFormatTestCase.java b/lucene/test-framework/src/java/org/apache/lucene/index/BaseIndexFileFormatTestCase.java
index f59a399..7d017e7 100644
--- a/lucene/test-framework/src/java/org/apache/lucene/index/BaseIndexFileFormatTestCase.java
+++ b/lucene/test-framework/src/java/org/apache/lucene/index/BaseIndexFileFormatTestCase.java
@@ -787,7 +787,7 @@ abstract class BaseIndexFileFormatTestCase extends LuceneTestCase {
 
   }
 
-  public static class ReadBytesDirectoryWrapper extends FilterDirectory {
+  private static class ReadBytesDirectoryWrapper extends FilterDirectory {
 
     ReadBytesDirectoryWrapper(Directory in) {
       super(in);