Remove a needless check in CI_Output::append_output()
diff --git a/system/core/Output.php b/system/core/Output.php
index 2811a73..d494d00 100644
--- a/system/core/Output.php
+++ b/system/core/Output.php
@@ -175,15 +175,7 @@
 	 */
 	public function append_output($output)
 	{
-		if (empty($this->final_output))
-		{
-			$this->final_output = $output;
-		}
-		else
-		{
-			$this->final_output .= $output;
-		}
-
+		$this->final_output .= $output;
 		return $this;
 	}