Browse Source

remove unnecessary else.

Taylor Otwell 13 years ago
parent
commit
6b9b0ad5cd
1 changed files with 2 additions and 4 deletions
  1. 2 4
      system/view.php

+ 2 - 4
system/view.php

@@ -111,10 +111,8 @@ class View {
 		{
 			return $path;
 		}
-		else
-		{
-			throw new \Exception("View [".$this->view."] doesn't exist.");
-		}
+
+		throw new \Exception("View [".$this->view."] doesn't exist.");
 	}
 
 	/**