Fix Generics usage in IdempotentReceiverIntTests

This commit is contained in:
Artem Bilan
2015-04-20 14:04:37 +03:00
parent f410c4a21d
commit b2e83a8792

View File

@@ -28,6 +28,7 @@ import static org.junit.Assert.fail;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.atomic.AtomicInteger;
import org.aopalliance.aop.Advice;
@@ -195,7 +196,7 @@ public class IdempotentReceiverIntegrationTests {
@Bean
public ConcurrentMetadataStore store() {
return new SimpleMetadataStore(hazelcastInstance().getMap("idempotentReceiverMetadataStore"));
return new SimpleMetadataStore(hazelcastInstance().<String, String>getMap("idempotentReceiverMetadataStore"));
}
@Bean