Calls System.currentTimeMillis() to save the current time so it can be retrieved later using getStartTime() to calculate the elapsed time of an operation.
()
| 2828 | time so it can be retrieved later using getStartTime() |
| 2829 | to calculate the elapsed time of an operation. */ |
| 2830 | public void startTiming() { |
| 2831 | startTime = System.currentTimeMillis(); |
| 2832 | } |
| 2833 | |
| 2834 | /** Returns the time in milliseconds when |
| 2835 | startTiming() was last called. */ |
no outgoing calls
no test coverage detected