From aa48f564071a4d4be4a6a524376523ac3f2fd4de Mon Sep 17 00:00:00 2001
From: zYne <zYne@625475ce-881a-0410-a577-b389adb331d8>
Date: Thu, 10 May 2007 18:10:28 +0000
Subject: [PATCH]

---
 draft/new-core/Hydrate.php | 47 ++------------------------------------
 1 file changed, 2 insertions(+), 45 deletions(-)

diff --git a/draft/new-core/Hydrate.php b/draft/new-core/Hydrate.php
index 6a1b768b6..7b8e7aed3 100644
--- a/draft/new-core/Hydrate.php
+++ b/draft/new-core/Hydrate.php
@@ -58,19 +58,10 @@ abstract class Doctrine_Hydrate extends Doctrine_Access
      * constant for CREATE queries
      */
     const CREATE = 4;
-    /**
-     * @var array $fetchmodes                   an array containing all fetchmodes
-     */
-    protected $fetchModes  = array();
     /**
      * @var array $tables                       an array containing all the tables used in the query
      */
     protected $tables      = array();
-    /**
-     * @var array $collections                  an array containing all collections
-     *                                          this hydrater has created/will create
-     */
-    protected $collections = array();
     /**
      * @var array $joins                        an array containing all table joins
      */
@@ -349,40 +340,6 @@ abstract class Doctrine_Hydrate extends Doctrine_Access
         }
         return $this->tableAliases[$path];
     }
-    /**
-     * getCollection
-     *
-     * @parma string $name              component name
-     * @param integer $index
-     */
-    private function getCollection($name)
-    {
-        $table = $this->tables[$name];
-        if ( ! isset($this->fetchModes[$name])) {
-            return new Doctrine_Collection($table);
-        }
-        switch ($this->fetchModes[$name]) {
-            case Doctrine::FETCH_BATCH:
-                $coll = new Doctrine_Collection_Batch($table);
-                break;
-            case Doctrine::FETCH_LAZY:
-                $coll = new Doctrine_Collection_Lazy($table);
-                break;
-            case Doctrine::FETCH_OFFSET:
-                $coll = new Doctrine_Collection_Offset($table);
-                break;
-            case Doctrine::FETCH_IMMEDIATE:
-                $coll = new Doctrine_Collection_Immediate($table);
-                break;
-            case Doctrine::FETCH_LAZY_OFFSET:
-                $coll = new Doctrine_Collection_LazyOffset($table);
-                break;
-            default:
-                throw new Doctrine_Exception("Unknown fetchmode");
-        };
-
-        return $coll;
-    }
     /**
      * setParams
      *
@@ -748,9 +705,9 @@ abstract class Doctrine_Hydrate extends Doctrine_Access
                 $data[$component][$field] = $value;
 
                 unset($data[$key]);
-            };
+            }
             $array[] = $data;
-        };
+        }
 
         $stmt->closeCursor();
         return $array;