commit ebbea85fe8d9dd5dbdb2d0780e6ce2027ca56509
parent c62327d54ddb2ffbb4abb4da02ef0324fdf5f993
Author: Felicitus <felicitus@felicitus.org>
Date: Tue, 21 Jun 2011 07:21:24 +0200
Removed some debugging statements
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/testing/SetupDatabase.php b/testing/SetupDatabase.php
@@ -114,7 +114,6 @@ $footprintCategoryManager->ensureRootExists();
function addFootprintPath (Array $path, $node) {
if (count($path) == 0) { return $node; }
$name = array_shift($path);
- echo "Name is: ".$name."\n";
$childNode = null;
@@ -144,7 +143,6 @@ foreach ($data as $footprintName => $footprintData) {
}
if (array_key_exists("category", $footprintData)) {
- // @todo add category
$footprintCategory = addFootprintPath(explode("/", $footprintData["category"]), $footprintCategoryManager->getRootNode());
$footprint->setCategory($footprintCategory->getNode());
}