Browse Source

fix javaddoc and unused variable

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271298 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 23 years ago
parent
commit
b6f66230b3
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestSummary.java

+ 2
- 4
proposal/sandbox/junit/src/main/org/apache/tools/ant/taskdefs/optional/rjunit/remote/TestSummary.java View File

@@ -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 <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 @@ public final class TestSummary implements Serializable, TestListener {
/**
* 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;


Loading…
Cancel
Save