From 30c5f34bdeca6f27c591d521905de25c65e16eb0 Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Thu, 18 Dec 2003 09:10:51 +0000 Subject: [PATCH] Initialize targetstarttime, even if the recorder is in a target PR: 25605 Obtained from: John McDonnell git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275808 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/taskdefs/RecorderEntry.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/org/apache/tools/ant/taskdefs/RecorderEntry.java b/src/main/org/apache/tools/ant/taskdefs/RecorderEntry.java index 483e5eb3f..6c939d3c7 100644 --- a/src/main/org/apache/tools/ant/taskdefs/RecorderEntry.java +++ b/src/main/org/apache/tools/ant/taskdefs/RecorderEntry.java @@ -93,6 +93,7 @@ public class RecorderEntry implements BuildLogger { * @param name The name of this recorder (used as the filename). */ protected RecorderEntry(String name) { + targetStartTime = System.currentTimeMillis(); filename = name; }