Skip to content

Commit 770797c

Browse files
author
Phil E. Taylor
authored
Fix for constructors missing (#35333)
1 parent 6d975da commit 770797c

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

administrator/components/com_joomlaupdate/restore.php

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -791,14 +791,6 @@ abstract class AKAbstractUnarchiver extends AKAbstractPart
791791
/** @var array Unwriteable files in these directories are always ignored and do not cause errors when not extracted */
792792
protected $ignoreDirectories = array();
793793

794-
/**
795-
* Public constructor
796-
*/
797-
public function __construct()
798-
{
799-
parent::__construct();
800-
}
801-
802794
/**
803795
* Wakeup function, called whenever the class is unserialized
804796
*/
@@ -857,8 +849,6 @@ public function isIgnoredDirectory($shortFilename)
857849
*/
858850
final protected function _prepare()
859851
{
860-
parent::__construct();
861-
862852
if (count($this->_parametersArray) > 0)
863853
{
864854
foreach ($this->_parametersArray as $key => $value)
@@ -2662,8 +2652,6 @@ class AKCoreTimer extends AKAbstractObject
26622652
*/
26632653
public function __construct()
26642654
{
2665-
parent::__construct();
2666-
26672655
// Initialize start time
26682656
$this->start_time = $this->microtime_float();
26692657

0 commit comments

Comments
 (0)