Browse Source

Remove comment bloat from Route\Finder class.

Taylor Otwell 13 years ago
parent
commit
0d48fba1be
1 changed files with 2 additions and 4 deletions
  1. 2 4
      system/route/finder.php

+ 2 - 4
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);