Removed some debugging code

This commit is contained in:
Jeff Moser
2010-10-03 19:21:55 -04:00
parent 1156c839d4
commit 930444a0f7
8 changed files with 20 additions and 53 deletions

View File

@ -16,18 +16,12 @@ class Variable
public function &getValue()
{
$value = &$this->_value;
// DEBUG
$selfHash = \spl_object_hash($this);
$selfName = (string)$this;
$value = &$this->_value;
return $value;
}
public function setValue(&$value)
{
// DEBUG
$selfName = (string)$this;
$selfHash = \spl_object_hash($this);
{
$this->_value = &$value;
}