/src/main/java/com/t11e/discovery/datatool/StopWatchHelper.java
http://github.com/t11e/discovery_datatool · Java · 19 lines · 15 code · 4 blank · 0 comment · 1 complexity · fb0b1c59a46e3014f55042b689f5175c MD5 · raw file
- package com.t11e.discovery.datatool;
- import org.apache.commons.lang.time.StopWatch;
- public class StopWatchHelper
- {
- public static StopWatch startTimer(final boolean shouldLogTiming)
- {
- StopWatch watch = null;
- if (shouldLogTiming)
- {
- watch = new StopWatch();
- watch.start();
- }
- return watch;
- }
- }