From b89f58d4d90b6d608b8e16b0e5e3235eaff4f54e Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Sun, 21 May 2017 22:20:47 +0200
Subject: [PATCH] No more this here, it is no longer generic
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/lists/class_BaseList.php | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/framework/main/classes/lists/class_BaseList.php b/framework/main/classes/lists/class_BaseList.php
index 8d79d1d6..3c728320 100644
--- a/framework/main/classes/lists/class_BaseList.php
+++ b/framework/main/classes/lists/class_BaseList.php
@@ -308,9 +308,6 @@ class BaseList extends BaseFrameworkSystem implements IteratorAggregate, Countab
 		} elseif ((is_array($entry)) && (isset($entry['id']))) {
 			// Supported array found
 			$entry2 = crc32($entry['id']) . ':' . count($entry);
-		} elseif ((is_array($entry)) && (isset($entry[BasePool::SOCKET_ARRAY_RESOURCE])) && (isset($entry[BasePool::SOCKET_ARRAY_CONN_TYPE]))) {
-			// Is a socket resource array
-			$entry2 = crc32($entry[BasePool::SOCKET_ARRAY_RESOURCE] . ':' . $entry[BasePool::SOCKET_ARRAY_CONN_TYPE]);
 		} else {
 			// Unsupported type detected
 			self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BASE-LIST[' . __METHOD__ . ':' . __LINE__ . ']: Entry type ' . gettype($entry) . ' is unsupported.');
-- 
2.39.5