Removing deprecated function on BpmnWorkflow adapter

This commit is contained in:
Erik Amaru Ortiz
2014-02-25 16:53:25 -04:00
parent 1dbc02926c
commit ce2c490b55

View File

@@ -479,19 +479,6 @@ class BpmnWorkflow extends Project\Bpmn
return empty($result) ? null : $result;
}
protected static function findInArray($value, $key, $list)
{
$result = array();
foreach ($list as $item) {
if (array_key_exists($key, $item) && $item[$key] == $value) {
$result[] = $item;
}
}
return $result;
}
public function remove()
{
parent::remove();