From ea366948cfd1980289037dafa17353c547cefd34 Mon Sep 17 00:00:00 2001
From: Jaime Perez Crespo <jaime.perez@uninett.no>
Date: Fri, 5 Feb 2016 13:15:20 +0100
Subject: [PATCH] Get rid of unused, private methods in
 SimpleSAML_XHTML_Template.

---
 lib/SimpleSAML/XHTML/Template.php | 28 ----------------------------
 1 file changed, 28 deletions(-)

diff --git a/lib/SimpleSAML/XHTML/Template.php b/lib/SimpleSAML/XHTML/Template.php
index 76f5659ec..9fe724976 100644
--- a/lib/SimpleSAML/XHTML/Template.php
+++ b/lib/SimpleSAML/XHTML/Template.php
@@ -29,18 +29,6 @@ class SimpleSAML_XHTML_Template {
         $this->translator = new SimpleSAML\Locale\Translate($configuration, $defaultDictionary = null);
     }
 
-    /**
-     * Includes a file relative to the template base directory.
-     * This function can be used to include headers and footers etc.
-     *
-     */
-    private function includeAtTemplateBase($file) {
-        $data = $this->data;
-
-        $filename = $this->findTemplatePath($file);
-
-        include($filename);
-    }
 
     /**
      * @deprecated This method will be removed in SSP 2.0. Please use SimpleSAML\Locale\Translate::getTranslation()
@@ -60,22 +48,6 @@ class SimpleSAML_XHTML_Template {
     }
 
 
-    /**
-     * Wrap Language->isLanguageRTL
-     */
-    private function isLanguageRTL() {
-        return $this->translator->language->isLanguageRTL();
-    }
-
-
-    /**
-     * Wraps Language->getLanguageList
-     */
-    private function getLanguageList() {
-        return $this->translator->language->getLanguageList();
-    }
-
-
     /**
      * Wraps Translate->includeInlineTranslation()
      *
-- 
GitLab