From b6f66230b3579de3ea35e0298d9f8729e848744e Mon Sep 17 00:00:00 2001 From: Stephane Bailliez Date: Tue, 12 Feb 2002 20:50:28 +0000 Subject: [PATCH] fix javaddoc and unused variable git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271298 13f79535-47bb-0310-9956-ffa450edef68 --- .../ant/taskdefs/optional/rjunit/remote/TestSummary.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestSummary.java b/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestSummary.java index 79d71e682..1b6999b08 100644 --- a/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestSummary.java +++ b/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestSummary.java @@ -84,8 +84,6 @@ public final class TestSummary implements Serializable, TestListener { /** number of runs */ private int runCount; - private transient String toString; - /** bean constructor */ public TestSummary() { } @@ -130,7 +128,7 @@ public final class TestSummary implements Serializable, TestListener { /** * register to the TestResult and starts the time counter. * @param result the instance to register to. - * @see #stop() + * @see #stop(TestResult) */ public void start(TestResult result){ elapsedTime = System.currentTimeMillis(); @@ -140,7 +138,7 @@ public final class TestSummary implements Serializable, TestListener { /** * unregister from the TestResult and stops the time counter. * @param result the instance to unregister from. - * @see #start() + * @see #start(TestResult) */ public void stop(TestResult result){ elapsedTime = System.currentTimeMillis() - elapsedTime;