summaryrefslogtreecommitdiff
path: root/framework/Collections
diff options
context:
space:
mode:
authorxue <>2006-02-17 05:25:37 +0000
committerxue <>2006-02-17 05:25:37 +0000
commite1ee81a09e299d5a9bc59ed59b04acfa3a85a935 (patch)
tree846ed8e55761fbc9d598c8e9d34cc0ab3f6f87a7 /framework/Collections
parent7b38480de52c1d042ea542e2d06913a8c9b645fc (diff)
Removed a few constructors.
Diffstat (limited to 'framework/Collections')
-rw-r--r--framework/Collections/TList.php1
-rw-r--r--framework/Collections/TMap.php1
2 files changed, 0 insertions, 2 deletions
diff --git a/framework/Collections/TList.php b/framework/Collections/TList.php
index 1090ce77..7383b684 100644
--- a/framework/Collections/TList.php
+++ b/framework/Collections/TList.php
@@ -58,7 +58,6 @@ class TList extends TComponent implements IteratorAggregate,ArrayAccess
*/
public function __construct($data=null)
{
- parent::__construct();
if($data!==null)
$this->copyFrom($data);
}
diff --git a/framework/Collections/TMap.php b/framework/Collections/TMap.php
index 4d810503..7c46ae70 100644
--- a/framework/Collections/TMap.php
+++ b/framework/Collections/TMap.php
@@ -53,7 +53,6 @@ class TMap extends TComponent implements IteratorAggregate,ArrayAccess
*/
public function __construct($data=null)
{
- parent::__construct();
if($data!==null)
$this->copyFrom($data);
}