You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2020/02/09 06:16:15 UTC

[lucenenet] 23/35: BREAKING: Lucene.Net.Support: Marked RectangularArrays internal

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 f3962315c192caaa797ac68868380368fe928b14
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Sat Feb 8 12:45:22 2020 +0700

    BREAKING: Lucene.Net.Support: Marked RectangularArrays internal
---
 src/Lucene.Net/Support/RectangularArrays.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Lucene.Net/Support/RectangularArrays.cs b/src/Lucene.Net/Support/RectangularArrays.cs
index a3a33da..d881d8a 100644
--- a/src/Lucene.Net/Support/RectangularArrays.cs
+++ b/src/Lucene.Net/Support/RectangularArrays.cs
@@ -8,7 +8,7 @@
 
 namespace Lucene.Net.Support
 {
-    public static class RectangularArrays
+    internal static class RectangularArrays
     {
         public static T[][] ReturnRectangularArray<T>(int size1, int size2)
         {