diff --git a/store-implementation/accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/retriever/impl/AccumuloElementsRetriever.java b/store-implementation/accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/retriever/impl/AccumuloElementsRetriever.java index 68a142f6955..c55bf2c74df 100644 --- a/store-implementation/accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/retriever/impl/AccumuloElementsRetriever.java +++ b/store-implementation/accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/retriever/impl/AccumuloElementsRetriever.java @@ -16,8 +16,6 @@ package uk.gov.gchq.gaffer.accumulostore.retriever.impl; -import java.util.stream.StreamSupport; - import uk.gov.gchq.gaffer.accumulostore.AccumuloStore; import uk.gov.gchq.gaffer.accumulostore.key.exception.IteratorSettingException; import uk.gov.gchq.gaffer.data.element.id.EdgeId; @@ -25,6 +23,8 @@ import uk.gov.gchq.gaffer.store.StoreException; import uk.gov.gchq.gaffer.user.User; +import java.util.stream.StreamSupport; + public class AccumuloElementsRetriever extends AccumuloSingleIDRetriever { public AccumuloElementsRetriever(final AccumuloStore store, final GetElements operation, diff --git a/store-implementation/accumulo-store/src/test/java/uk/gov/gchq/gaffer/accumulostore/integration/AccumuloMatchedVertexIT.java b/store-implementation/accumulo-store/src/test/java/uk/gov/gchq/gaffer/accumulostore/integration/AccumuloMatchedVertexIT.java index d17783d3a1a..efcd161dbfc 100644 --- a/store-implementation/accumulo-store/src/test/java/uk/gov/gchq/gaffer/accumulostore/integration/AccumuloMatchedVertexIT.java +++ b/store-implementation/accumulo-store/src/test/java/uk/gov/gchq/gaffer/accumulostore/integration/AccumuloMatchedVertexIT.java @@ -17,7 +17,6 @@ import com.google.common.collect.Lists; import org.assertj.core.api.Condition; -import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.Arguments; import org.junit.jupiter.params.provider.MethodSource;