summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorRick Ellis <rick.ellis@ellislab.com>2008-10-01 03:07:23 +0200
committerRick Ellis <rick.ellis@ellislab.com>2008-10-01 03:07:23 +0200
commit91a091abc17714e00b870b36e5f1d2bb8f009fb2 (patch)
treee4a4fbdec7e502d0d3d9eb89199f1857216b4ff0 /system
parent852160a27ba330f9e47f4fb16d8042c6074f435c (diff)
Removed some stray tabs
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Benchmark.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/libraries/Benchmark.php b/system/libraries/Benchmark.php
index b5a9a6526..4984bb158 100644
--- a/system/libraries/Benchmark.php
+++ b/system/libraries/Benchmark.php
@@ -47,7 +47,7 @@ class CI_Benchmark {
{
$this->marker[$name] = microtime();
}
-
+
// --------------------------------------------------------------------
/**
@@ -80,13 +80,13 @@ class CI_Benchmark {
{
$this->marker[$point2] = microtime();
}
-
+
list($sm, $ss) = explode(' ', $this->marker[$point1]);
list($em, $es) = explode(' ', $this->marker[$point2]);
return number_format(($em + $es) - ($sm + $ss), $decimals);
}
-
+
// --------------------------------------------------------------------
/**