From 260b0cd22db4fb3191706893ba9d7554a9de9d3e Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Thu, 10 Dec 2020 04:00:44 +0100
Subject: [PATCH] Continued: - moved $minimumBlockLength to BaseFileIndex
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

Signed-off-by: Roland Häder <roland@mxchange.org>
---
 framework/main/classes/index/class_BaseIndex.php          | 5 -----
 framework/main/classes/index/file/class_BaseFileIndex.php | 5 +++++
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/framework/main/classes/index/class_BaseIndex.php b/framework/main/classes/index/class_BaseIndex.php
index fe369b74..d15d2ea0 100644
--- a/framework/main/classes/index/class_BaseIndex.php
+++ b/framework/main/classes/index/class_BaseIndex.php
@@ -41,11 +41,6 @@ abstract class BaseIndex extends BaseFrameworkSystem implements Indexable {
 	// Load traits
 	use IteratorTrait;
 
-	/**
-	 * Minimum block length
-	 */
-	private static $minimumBlockLength = 0;
-
 	/**
 	 * Protected constructor
 	 *
diff --git a/framework/main/classes/index/file/class_BaseFileIndex.php b/framework/main/classes/index/file/class_BaseFileIndex.php
index 360645bb..4af824a1 100644
--- a/framework/main/classes/index/file/class_BaseFileIndex.php
+++ b/framework/main/classes/index/file/class_BaseFileIndex.php
@@ -37,6 +37,11 @@ use \UnexpectedValueException;
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 abstract class BaseFileIndex extends BaseIndex implements FileIndexer {
+	/**
+	 * Minimum block length
+	 */
+	private static $minimumBlockLength = 0;
+
 	/**
 	 * Protected constructor
 	 *
-- 
2.39.5