aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/profiler/output/PhaseHtml.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/profiler/output/PhaseHtml.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/profiler/output/PhaseHtml.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/profiler/output/PhaseHtml.java b/src/main/java/com/google/devtools/build/lib/profiler/output/PhaseHtml.java
index 1184b221f8..a6dcecc680 100644
--- a/src/main/java/com/google/devtools/build/lib/profiler/output/PhaseHtml.java
+++ b/src/main/java/com/google/devtools/build/lib/profiler/output/PhaseHtml.java
@@ -162,10 +162,8 @@ public final class PhaseHtml extends HtmlPrinter {
}
}
- long graphTime = execPhase.getTotalDurationNanos(ProfilerTask.ACTION_GRAPH);
- long execTime = execPhase.getPhaseDurationNanos() - graphTime;
+ long execTime = execPhase.getPhaseDurationNanos();
- printTwoColumnStatistic("Action dependency map creation", graphTime);
printTwoColumnStatistic("Actual execution time", execTime);
CriticalPathHtml criticalPaths = null;