mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Remove unnecessary calls to getMicroTime()
This commit is contained in:
parent
83d86b8e6c
commit
db87085967
9 changed files with 21 additions and 22 deletions
|
|
@ -1052,7 +1052,7 @@ class ModuleHandler extends Handler
|
|||
|
||||
if(__DEBUG__ == 3)
|
||||
{
|
||||
$start_time = getMicroTime();
|
||||
$start_time = microtime(true);
|
||||
}
|
||||
|
||||
$parent_module = $module;
|
||||
|
|
@ -1127,7 +1127,7 @@ class ModuleHandler extends Handler
|
|||
|
||||
if(__DEBUG__ == 3)
|
||||
{
|
||||
$GLOBALS['__elapsed_class_load__'] += getMicroTime() - $start_time;
|
||||
$GLOBALS['__elapsed_class_load__'] += microtime(true) - $start_time;
|
||||
}
|
||||
|
||||
// return the instance
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue