From 6d3f04d0a92d18a6196c8f32f52ace7782f0eaf4 Mon Sep 17 00:00:00 2001 From: jan Date: Wed, 6 Mar 2013 13:07:55 -0800 Subject: [PATCH] Remove deprecated yield array(...), try #2 Our PHP code no longer yields arrays. Remove. --- hphp/runtime/ext/asio/continuation_wait_handle.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/hphp/runtime/ext/asio/continuation_wait_handle.cpp b/hphp/runtime/ext/asio/continuation_wait_handle.cpp index dd3dcacb0..17c46f9d7 100644 --- a/hphp/runtime/ext/asio/continuation_wait_handle.cpp +++ b/hphp/runtime/ext/asio/continuation_wait_handle.cpp @@ -199,9 +199,6 @@ void c_ContinuationWaitHandle::run() { if (IS_NULL_TYPE(value->m_type)) { // null dependency m_child = nullptr; - } else if (value->m_type == KindOfArray) { - // array of dependencies; TODO: deprecate this - m_child = c_GenArrayWaitHandle::t_create(value->m_data.parr); } else { c_WaitHandle* child = c_WaitHandle::fromTypedValue(value); if (UNLIKELY(!child)) {