Actions
Task #38333
closedCleanup: Useless method overriding in t3lib_spritemanager_SimpleHandler
Start date:
2012-06-23
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.0
PHP Version:
Tags:
Complexity:
easy
Sprint Focus:
Description
In t3lib_spritemanager_SimpleHandler the method __construct just calls his parent
/** * constructor just init's the temp-file-name * @return void */ public function __construct() { parent::__construct(); }
This is quite useless, because due OOP, the parent method (t3lib_spritemanager_AbstractHandler::__construct) is called, if t3lib_spritemanager_SimpleHandler does not provide a local / override method.
Actions