From 60c9c9151668da33789dfe1ca38e2483f15ed58d Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 8 Jul 2011 06:28:41 -0700 Subject: [PATCH] Trimming comment bloat from Route class. --- system/route.php | 1 - 1 file changed, 1 deletion(-) diff --git a/system/route.php b/system/route.php index 3e497393..df4a24a4 100644 --- a/system/route.php +++ b/system/route.php @@ -53,7 +53,6 @@ public function call() { $response = call_user_func_array($this->callback, $this->parameters); } - // If the route value is an array, we'll need to check it for any filters that may be attached. elseif (is_array($this->callback)) { $response = isset($this->callback['before']) ? Route\Filter::call($this->callback['before'], array(), true) : null;