This commit is contained in:
Manfred Karrer 2016-06-10 21:20:41 +02:00
parent e2cb35110e
commit fc9f904da0

View file

@ -24,8 +24,8 @@ import org.slf4j.LoggerFactory;
import java.util.concurrent.TimeUnit;
public class Profiler {
private static final Logger log = LoggerFactory.getLogger(Profiler.class);
public class GUIProfiler {
private static final Logger log = LoggerFactory.getLogger(GUIProfiler.class);
private static final Stopwatch globalStopwatch = Stopwatch.createStarted();
private static final ThreadLocal<Stopwatch> threadStopwatch = ThreadLocal.withInitial(Stopwatch::createStarted);