Browse Source

Merge remote branch 'craue/patch-1'

* craue/patch-1:
  removed unnecessary semicolon
Fabien Potencier 14 years ago
parent
commit
0dab2de6da
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Symfony/Component/Routing/RouteCollection.php

+ 1 - 1
src/Symfony/Component/Routing/RouteCollection.php

@@ -97,7 +97,7 @@ class RouteCollection implements \IteratorAggregate
 
         if (isset($this->routes[$name])) {
             return $this->routes[$name];
-        };
+        }
     }
 
     /**