commit | 2ab4ffbae66c4db68c3dadbbc8944d09ded17ec9 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Mon Feb 24 16:15:09 2014 +0200 |
committer | Andrey Andreev <narf@devilix.net> | Mon Feb 24 16:15:09 2014 +0200 |
tree | 7f65c8aa0a4dbd777e9b732ddd78b6e6c6a1fd14 | |
parent | 20e802eea2fc455622a0f4f721cb82acb046f5b8 [diff] [blame] |
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; }