Skip to content

Commit a09919a

Browse files
committed
Code cleanup
1 parent 9f594e3 commit a09919a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/main/java/com/labelzoom/api/diagnostics/Stopwatch.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* or distributed except as authorized by the license.
1313
*/
1414

15-
public class Stopwatch implements AutoCloseable
15+
public class Stopwatch
1616
{
1717
private long startTime = 0L;
1818
private long stopTime = 0L;
@@ -72,10 +72,4 @@ public String toString()
7272
{
7373
return String.format("%4d ms / %8d us", getElapsedMilliseconds(), getElapsedNanoseconds() / 1000);
7474
}
75-
76-
@Override
77-
public void close()
78-
{
79-
stop();
80-
}
8175
}

0 commit comments

Comments
 (0)