diff options
| author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-25 22:18:58 +0000 |
|---|---|---|
| committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-25 22:18:58 +0000 |
| commit | 7a5fe8ce23ac50450b804cf0183c773565ae7cef (patch) | |
| tree | 220a38a6627619d1386897d42757a140b9de448f /java/apps/NexusII/src/Timer.java | |
| parent | 87b0987cad99cf45cd5d9e03cd1cefbaaec4ef2a (diff) | |
| download | ATCD-ACE-4_4.tar.gz | |
This commit was manufactured by cvs2svn to create branch 'ACE-4_4'.ACE-4_4
Diffstat (limited to 'java/apps/NexusII/src/Timer.java')
| -rw-r--r-- | java/apps/NexusII/src/Timer.java | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/java/apps/NexusII/src/Timer.java b/java/apps/NexusII/src/Timer.java deleted file mode 100644 index df781274913..00000000000 --- a/java/apps/NexusII/src/Timer.java +++ /dev/null @@ -1,31 +0,0 @@ -// This class encapsulates a Timer mechanism -// Can be used for Profiling of parts of code and gathering statistics - -package NexusII ; - -public class Timer { - -public Timer() -{ - start_ = 0 ; -} - -public void start() - -{ - start_ = System.currentTimeMillis(); -} - -public long elapsed_time() -{ - return System.currentTimeMillis() - start_ ; -} - -public void stop() -{ - start_ = 0 ; -} - -private long start_ = 0 ; - -} |
