From 0d48fba1be011788be6b10835118524e37f40b00 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 7 Jul 2011 08:57:30 -0700 Subject: [PATCH] Remove comment bloat from Route\Finder class. --- system/route/finder.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/system/route/finder.php b/system/route/finder.php index 374da874..f38b41c6 100644 --- a/system/route/finder.php +++ b/system/route/finder.php @@ -34,10 +34,8 @@ class Finder { return static::$names[$name]; } - // --------------------------------------------------------- - // We haven't located the route before, so we'll need to - // iterate through each route to find the matching name. - // --------------------------------------------------------- + // We haven't located the route before, so we'll need to iterate through each + // route to find the matching name. $arrayIterator = new \RecursiveArrayIterator(static::$routes); $recursiveIterator = new \RecursiveIteratorIterator($arrayIterator);