mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
fixing reset()
This commit is contained in:
parent
a043848904
commit
c36a0eabdb
1 changed files with 3 additions and 11 deletions
|
@ -84,19 +84,11 @@ class Profiler implements ContainerInterface
|
|||
|
||||
/**
|
||||
* Resets the performance and callstack profiling
|
||||
*
|
||||
* @param bool $performance If true, reset the performance (Default true)
|
||||
* @param bool $callstack If true, reset the callstack (Default true)
|
||||
*/
|
||||
public function reset($performance = true, $callstack = true)
|
||||
public function reset()
|
||||
{
|
||||
if ($performance) {
|
||||
$this->resetPerformance();
|
||||
}
|
||||
|
||||
if ($callstack) {
|
||||
$this->resetCallstack();
|
||||
}
|
||||
$this->resetPerformance();
|
||||
$this->resetCallstack();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue