]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/lists/class_BaseList.php
Removed generic array handling, always have special arrays. Added verification of...
[hub.git] / application / hub / main / lists / class_BaseList.php
index 7fe351e4508144a1c862680708f47d0b9d1e833a..4def45ba530257e515d55456a5e2e9cf6302c980 100644 (file)
@@ -269,9 +269,6 @@ class BaseList extends BaseHubSystem implements IteratorAggregate, Countable {
                } 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]);
-               } elseif (is_array($entry)) {
-                       // Is a generic array
-                       $entry2 = gettype($entry) . ':' . count($entry);
                } else {
                        // Unsupported type detected
                        $this->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: Entry type ' . gettype($entry) . ' is unsupported.');