Actions
Task #38334
closedCleanup: Useless method overriding in class localRecordList
Start date:
2012-06-23
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.0
PHP Version:
Tags:
Complexity:
easy
Sprint Focus:
Description
In localRecordList the method __construct just calls his parent
/** * Constructor */ public function __construct() { parent::__construct(); }
This is quite useless, because due OOP, the parent method (recordList::__construct) is called, if localRecordList does not provide a local / override method.
Updated by Gerrit Code Review over 12 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12313
Updated by Gerrit Code Review over 12 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12313
Updated by Gerrit Code Review over 12 years ago
Patch set 3 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/12313
Updated by Andy Grunwald over 12 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 899b13aca2ec19cb79341fb37fb0861cc652f667.
Updated by Riccardo De Contardi about 7 years ago
- Status changed from Resolved to Closed
Actions