From f117012f708b823680734a97cf1296f0ea0623af Mon Sep 17 00:00:00 2001
From: Andy Grunwald <andygrunwald@gmail.com>
Date: Sat, 23 Jun 2012 22:02:44 +0200
Subject: [PATCH] [TASK] Remove empty init() method from EXT:tsconfig_help

In EXT:tsconfig_help the method init() just call his parent.

This is not needed, because parent method are always called,
even if an extending class does not specify this explicitly.

Change-Id: I69d7aa47af7f6d90b8c3fb78c2f00d088e8a0597
Fixes: #38336
Releases: 6.0
Reviewed-on: http://review.typo3.org/12315
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
---
 typo3/sysext/tsconfig_help/mod1/index.php | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/typo3/sysext/tsconfig_help/mod1/index.php b/typo3/sysext/tsconfig_help/mod1/index.php
index 327251571f83..7b20a9c44c8f 100644
--- a/typo3/sysext/tsconfig_help/mod1/index.php
+++ b/typo3/sysext/tsconfig_help/mod1/index.php
@@ -40,14 +40,6 @@ class tx_tsconfighelp_module1 extends t3lib_SCbase {
 		// This is used to count how many times the same obj_string appears across all extensions
 	var $allObjStrings = array();
 
-	/**
-	 * Initializes the Module
-	 * @return void
-	 */
-	function init() {
-		parent::init();
-	}
-
 	/**
 	 * Adds items to the ->MOD_MENU array. Used for the function menu selector.
 	 *
-- 
GitLab