From a502b130cfd48310e9c9f6a00ed8ec85bb6e88f4 Mon Sep 17 00:00:00 2001
From: romanb <romanb@625475ce-881a-0410-a577-b389adb331d8>
Date: Fri, 12 Sep 2008 12:11:59 +0000
Subject: [PATCH] removed orm dependency from Common::Configuration

---
 lib/Doctrine/Common/Configuration.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Doctrine/Common/Configuration.php b/lib/Doctrine/Common/Configuration.php
index d2132f170..db057a5cc 100644
--- a/lib/Doctrine/Common/Configuration.php
+++ b/lib/Doctrine/Common/Configuration.php
@@ -59,7 +59,7 @@ class Doctrine_Common_Configuration
      */
     public function __construct()
     {
-        $this->_nullObject = Doctrine_ORM_Internal_Null::$INSTANCE;
+        $this->_nullObject = new stdClass();
         $this->_initAttributes();
     }