From e334fd80b6167c48f26ec82b6abc993b0c0635dc Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 6 Jul 2011 14:59:53 -0700 Subject: [PATCH] Trim comment bloat on Response class. --- system/response.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/system/response.php b/system/response.php index a3d1b5cc..8c648257 100644 --- a/system/response.php +++ b/system/response.php @@ -109,10 +109,8 @@ public static function make($content, $status = 200) */ public static function prepare($response) { - // -------------------------------------------------------------- - // If the response is a Redirect instance, grab the Response. - // The Redirect class manages a Response instance internally. - // -------------------------------------------------------------- + // If the response is a Redirect instance, grab the Response. The Redirect class + // manages a Response instance internally. if ($response instanceof Redirect) { $response = $response->response;