diff --git a/lib/SimpleSAML/Session.php b/lib/SimpleSAML/Session.php
index 170b8560e6577b753077980260eb25fe83e8aad9..305efeab154e6a7f6e579818b3b06e57d66e92fd 100644
--- a/lib/SimpleSAML/Session.php
+++ b/lib/SimpleSAML/Session.php
@@ -951,37 +951,6 @@ class SimpleSAML_Session {
 	}
 
 
-	/**
-	 * Set the logout state for this session.
-	 *
-	 * @param array $state  The state array.
-	 * @deprecated
-	 */
-	public function setLogoutState(array $state) {
-		assert('isset($this->authData[$this->authority])');
-
-		$this->dirty = TRUE;
-		$this->authData[$this->authority]['LogoutState'] = $state;
-	}
-
-
-	/**
-	 * Retrieve the logout state for this session.
-	 *
-	 * @return array  The logout state. If no logout state is set, an empty array will be returned.
-	 * @deprecated
-	 */
-	public function getLogoutState() {
-		assert('isset($this->authData[$this->authority])');
-
-		if (!isset($this->authData[$this->authority]['LogoutState'])) {
-			return array();
-		}
-
-		return $this->authData[$this->authority]['LogoutState'];
-	}
-
-
 	/**
 	 * Get the current persistent authentication state.
 	 *