sbailliez 02/02/12 12:50:28
Modified:
proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote
TestSummary.java
Log:
fix javaddoc and unused variable
Revision Changes Path
1.2 +2 -4
jakarta-ant/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestSummary.java
Index: TestSummary.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestSummary.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- TestSummary.java 3 Feb 2002 13:28:45 -0000 1.1
+++ TestSummary.java 12 Feb 2002 20:50:28 -0000 1.2
@@ -84,8 +84,6 @@
/** number of runs */
private int runCount;
- private transient String toString;
-
/** bean constructor */
public TestSummary() {
}
@@ -130,7 +128,7 @@
/**
* register to the <tt>TestResult</tt> 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 @@
/**
* unregister from the <tt>TestResult</tt> 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;
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>