No more this here, it is no longer generic
authorRoland Häder <roland@mxchange.org>
Sun, 21 May 2017 20:20:47 +0000 (22:20 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 21 May 2017 20:20:47 +0000 (22:20 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
framework/main/classes/lists/class_BaseList.php

index 8d79d1d6c3c70090be933403c05444383e04cfb4..3c728320b080662de720cc3ec540afe627925be4 100644 (file)
@@ -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.');