From 15b19409ef94e531e51b58112be6ecc96d48725f Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Tue, 29 Jan 2008 12:31:40 +0000
Subject: [PATCH] Session: removed unused protocol attribute.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@211 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/Session.php | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/lib/SimpleSAML/Session.php b/lib/SimpleSAML/Session.php
index 69ed8e3e8..baf314b79 100644
--- a/lib/SimpleSAML/Session.php
+++ b/lib/SimpleSAML/Session.php
@@ -46,7 +46,6 @@ class SimpleSAML_Session {
 	private $idp = null;
 	
 	private $authenticated = null;
-	private $protocol = null;
 	private $attributes = null;
 	
 	private $sessionindex = null;
@@ -70,8 +69,6 @@ class SimpleSAML_Session {
 	 */
 	private function __construct($authenticated = true) {
 
-		$this->protocol = $protocol;
-		
 		$this->authenticated = $authenticated;
 		if ($authenticated) {
 			$this->sessionstarted = time();
@@ -349,13 +346,6 @@ class SimpleSAML_Session {
 	}
 	
 	
-	
-	
-	public function getProtocol() {
-		return $this->protocol;
-	}
-	
-	
 	// *** Attributes ***
 	
 	public function getAttributes() {
@@ -387,7 +377,6 @@ class SimpleSAML_Session {
 		$this->authority = null;
 	
 		$this->authenticated = null;
-		$this->protocol = null;
 		$this->attributes = null;
 	
 		$this->sessionindex = null;
-- 
GitLab