Skip to content

Commit

Permalink
Removing inheritance on Object as Dispatcher has no use for the inher…
Browse files Browse the repository at this point in the history
…ited methods.

Removing flush() call as it was causing the test suite to not display anything.
  • Loading branch information
markstory committed Jun 29, 2010
1 parent dae14ac commit 3e6cd0b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cake/dispatcher.php
Expand Up @@ -36,7 +36,7 @@
* @package cake
* @subpackage cake.cake
*/
class Dispatcher extends Object {
class Dispatcher {

/**
* Base URL
Expand Down Expand Up @@ -409,7 +409,6 @@ protected function _deliverAsset($assetFile, $ext) {
include($assetFile);
} else {
ob_clean();
flush();
readfile($assetFile);
}

Expand Down

0 comments on commit 3e6cd0b

Please sign in to comment.