Commit 1642f53b authored by jwage's avatar jwage

[2.0][DDC-48] Fixed issue with getNamespacedId() being called twice

parent da38026b
......@@ -57,7 +57,7 @@ abstract class AbstractCache implements Cache
public function fetch($id)
{
$id = $this->_getNamespacedId($id);
return $this->_doFetch($this->_getNamespacedId($id));
return $this->_doFetch($id);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment