From 8de13f06b28a173715bd0b5d0f5840cb4b549fb7 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 5 Oct 2015 12:39:37 +0200 Subject: [PATCH] BpNode: clean up, remove legacy constructor comments --- library/Businessprocess/BpNode.php | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/library/Businessprocess/BpNode.php b/library/Businessprocess/BpNode.php index ad38936..2d34f4f 100644 --- a/library/Businessprocess/BpNode.php +++ b/library/Businessprocess/BpNode.php @@ -23,15 +23,8 @@ class BpNode extends Node protected $className = 'process'; - public function __construct( - BusinessProcess $bp, - $object -/* - $name, - $operator, - $child_names -*/ - ) { + public function __construct(BusinessProcess $bp, $object) + { $this->bp = $bp; $this->name = $object->name; $this->setOperator($object->operator);