From ca03e7eb3639da928691c38c21d15b7b5dfd4d3a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jaime=20Pe=CC=81rez?= <jaime.perez@uninett.no>
Date: Mon, 3 Oct 2016 16:02:49 +0200
Subject: [PATCH] Remove unused variable.

It is set later inside one of the branches of the if, but the other branches abort the execution of the method, so there's no need to define it outside the if.
---
 lib/SimpleSAML/Configuration.php | 1 -
 1 file changed, 1 deletion(-)

diff --git a/lib/SimpleSAML/Configuration.php b/lib/SimpleSAML/Configuration.php
index 22ca6ad23..544728fd2 100644
--- a/lib/SimpleSAML/Configuration.php
+++ b/lib/SimpleSAML/Configuration.php
@@ -115,7 +115,6 @@ class SimpleSAML_Configuration
             return self::$loadedConfigs[$filename];
         }
 
-        $spurious_output = false;
         if (file_exists($filename)) {
             $config = 'UNINITIALIZED';
 
-- 
GitLab