Use the right import

This commit is contained in:
Juan Martín Sotuyo Dodero committed 2018-05-03 21:45:52 -03:00
1 parent 0bb75c2ce0
commit 2f4d852017
1 file changed
+2 -3
@@ -6,14 +6,13 @@ package net.sourceforge.pmd.benchmark;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Objects;
import java.util.Queue;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicLong;
import com.google.common.base.Objects;
/**
* A time tracker class to measure time spent on different sections of PMD analysis.
* The class is thread-aware, allowing to differentiate CPU and wall clock time.
@@ -245,7 +244,7 @@ public final class TimeTracker {
if (category != other.category) {
return false;
}
return Objects.equal(label, other.label);
return Objects.equals(label, other.label);
}
@Override