Skip to content
Snippets Groups Projects
Commit 15b19409 authored by Olav Morken's avatar Olav Morken
Browse files

Session: removed unused protocol attribute.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@211 44740490-163a-0410-bde0-09ae8108e29a
parent 160adde2
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,6 @@ class SimpleSAML_Session { ...@@ -46,7 +46,6 @@ class SimpleSAML_Session {
private $idp = null; private $idp = null;
private $authenticated = null; private $authenticated = null;
private $protocol = null;
private $attributes = null; private $attributes = null;
private $sessionindex = null; private $sessionindex = null;
...@@ -70,8 +69,6 @@ class SimpleSAML_Session { ...@@ -70,8 +69,6 @@ class SimpleSAML_Session {
*/ */
private function __construct($authenticated = true) { private function __construct($authenticated = true) {
$this->protocol = $protocol;
$this->authenticated = $authenticated; $this->authenticated = $authenticated;
if ($authenticated) { if ($authenticated) {
$this->sessionstarted = time(); $this->sessionstarted = time();
...@@ -349,13 +346,6 @@ class SimpleSAML_Session { ...@@ -349,13 +346,6 @@ class SimpleSAML_Session {
} }
public function getProtocol() {
return $this->protocol;
}
// *** Attributes *** // *** Attributes ***
public function getAttributes() { public function getAttributes() {
...@@ -387,7 +377,6 @@ class SimpleSAML_Session { ...@@ -387,7 +377,6 @@ class SimpleSAML_Session {
$this->authority = null; $this->authority = null;
$this->authenticated = null; $this->authenticated = null;
$this->protocol = null;
$this->attributes = null; $this->attributes = null;
$this->sessionindex = null; $this->sessionindex = null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment