From 7e4f4319d5704f7c21222f6bdaa65fbf7d08b3d0 Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Thu, 3 Mar 2016 15:16:33 +0200 Subject: [PATCH] Minor refactoring --- system/src/Grav/Common/Theme.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/system/src/Grav/Common/Theme.php b/system/src/Grav/Common/Theme.php index 261c2ec4e..82cab5111 100644 --- a/system/src/Grav/Common/Theme.php +++ b/system/src/Grav/Common/Theme.php @@ -10,8 +10,6 @@ use RocketTheme\Toolbox\File\YamlFile; */ class Theme extends Plugin { - public $name; - /** * Constructor. * @@ -21,8 +19,6 @@ class Theme extends Plugin */ public function __construct(Grav $grav, Config $config, $name) { - $this->name = $name; - parent::__construct($name, $grav, $config); }