Skip to content
This repository was archived by the owner on Dec 23, 2017. It is now read-only.

Commit d924794

Browse files
committed
Use guava Maps.newConcurrentMap()
1 parent f8bdc7b commit d924794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/graylog/plugins/usagestatistics/TestClusterConfigService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
package org.graylog.plugins.usagestatistics;
1717

18-
import org.assertj.core.util.Maps;
18+
import com.google.common.collect.Maps;
1919
import org.graylog2.plugin.cluster.ClusterConfigService;
2020
import org.graylog2.shared.utilities.AutoValueUtils;
2121

@@ -24,7 +24,7 @@
2424
import static com.google.common.base.MoreObjects.firstNonNull;
2525

2626
public class TestClusterConfigService implements ClusterConfigService {
27-
private final Map<String, Object> data = Maps.newConcurrentHashMap();
27+
private final Map<String, Object> data = Maps.newConcurrentMap();
2828

2929
@SuppressWarnings("unchecked")
3030
public <T> T get(Class<T> type) {

0 commit comments

Comments
 (0)