delete useless comments

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1285 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-06-15 14:03:30 +00:00
parent 0181e872aa
commit a0ff56c0ed
1 changed files with 0 additions and 9 deletions

View File

@ -24,22 +24,13 @@ public class Stopwatch {
private long startTime;
/**
* Constructor Stopwatch.
*/
public Stopwatch() {
}
/**
* Method start.
*/
public void start() {
startTime = System.currentTimeMillis();
}
/**
* Method stop.
*/
public void stop() {
double endTime = System.currentTimeMillis();
count++;