Remove __start from SessionHelper

This commit is contained in:
predominant 2010-06-23 11:33:54 +10:00 committed by mark_story
parent 04b67e59fc
commit 913d54caa0

View file

@ -116,19 +116,4 @@ class SessionHelper extends AppHelper {
public function valid() {
return CakeSession::valid();
}
/**
* Determine if Session has been started
* and attempt to start it if not
*
* @return boolean true if Session is already started, false if
* Session could not be started
* @access private
*/
protected function __start() {
if (!$this->started()) {
return $this->start();
}
return true;
}
}