summaryrefslogtreecommitdiff
path: root/drivers/adodb-postgres7.inc.php
diff options
context:
space:
mode:
authorDamien Regad <dregad@mantisbt.org>2015-12-15 18:07:32 +0100
committerDamien Regad <dregad@mantisbt.org>2015-12-16 01:05:50 +0100
commit8ecd6a2a4a2e84f8f067c5d204452b20e70aff41 (patch)
treed6121fdd0ccf77a4050e4285832c6bf038f987b0 /drivers/adodb-postgres7.inc.php
parent24b7e106d7bdd8d22642c4def054e0896710e78f (diff)
downloadadodb-8ecd6a2a4a2e84f8f067c5d204452b20e70aff41.tar.gz
adodb-8ecd6a2a4a2e84f8f067c5d204452b20e70aff41.tar.bz2
adodb-8ecd6a2a4a2e84f8f067c5d204452b20e70aff41.zip
Remove useless constructors
Fixes #171
Diffstat (limited to 'drivers/adodb-postgres7.inc.php')
-rw-r--r--drivers/adodb-postgres7.inc.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/adodb-postgres7.inc.php b/drivers/adodb-postgres7.inc.php
index b9d5eca5..7250bdbb 100644
--- a/drivers/adodb-postgres7.inc.php
+++ b/drivers/adodb-postgres7.inc.php
@@ -307,12 +307,6 @@ class ADORecordSet_postgres7 extends ADORecordSet_postgres64{
var $databaseType = "postgres7";
-
- function __construct($queryID, $mode=false)
- {
- parent::__construct($queryID, $mode);
- }
-
// 10% speedup to move MoveNext to child class
function MoveNext()
{
@@ -339,11 +333,6 @@ class ADORecordSet_assoc_postgres7 extends ADORecordSet_postgres64{
var $databaseType = "postgres7";
- function __construct($queryID, $mode=false)
- {
- parent::__construct($queryID, $mode);
- }
-
function _fetch()
{
if ($this->_currentRow >= $this->_numOfRows && $this->_numOfRows >= 0) {