From 83128e79b4014c460e2642ce59f8e2117806b044 Mon Sep 17 00:00:00 2001 From: nicobn Date: Mon, 25 Jun 2007 17:00:43 +0000 Subject: [PATCH] Removed debug lines (let's hope I did not forget anything else !) --- lib/Doctrine/Import/Xml.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/Doctrine/Import/Xml.php b/lib/Doctrine/Import/Xml.php index 1ef479d57..3d903ed12 100644 --- a/lib/Doctrine/Import/Xml.php +++ b/lib/Doctrine/Import/Xml.php @@ -80,12 +80,8 @@ class Doctrine_Import_Xml // Go through all tables... foreach ($xmlObj->table as $table) { - print 'table: '. $table->name . "\n"; - // Go through all columns... foreach ($table->declaration->field as $field) { - print ' field: '. $field->name . "\n"; - $colDesc = array( 'name' => (string) $field->name, 'type' => (string) $field->type,