Browse Source

removed some comment bloat from view class.

Taylor Otwell 13 years ago
parent
commit
d57af216e6
1 changed files with 0 additions and 2 deletions
  1. 0 2
      laravel/view.php

+ 0 - 2
laravel/view.php

@@ -87,8 +87,6 @@ class View_Factory {
 	{
 		$view = str_replace('.', '/', $view);
 
-		// A view may have a regular extension or a blade extension. We will need to
-		// check for both extensions when determining the path to the view.
 		foreach (array(EXT, BLADE_EXT) as $extension)
 		{
 			if (file_exists($path = $this->path.$view.$extension)) return $path;