You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mk...@apache.org on 2020/07/01 06:37:27 UTC

[lucene-solr] branch branch_8_6 updated: SOLR-14539: fix imports in test

This is an automated email from the ASF dual-hosted git repository.

mkhl pushed a commit to branch branch_8_6
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8_6 by this push:
     new 6b5b83a  SOLR-14539: fix imports in test
6b5b83a is described below

commit 6b5b83a5fe7f718662ec1d29d1016c2f73222e91
Author: Mikhail Khludnev <mk...@apache.org>
AuthorDate: Wed Jul 1 09:36:35 2020 +0300

    SOLR-14539: fix imports in test
---
 .../solr/search/facet/TestJsonFacetsWithNestedObjects.java       | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacetsWithNestedObjects.java b/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacetsWithNestedObjects.java
index 4cc943c..3f297d1 100644
--- a/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacetsWithNestedObjects.java
+++ b/solr/core/src/test/org/apache/solr/search/facet/TestJsonFacetsWithNestedObjects.java
@@ -17,20 +17,11 @@
 package org.apache.solr.search.facet;
 
 import java.io.IOException;
-import java.util.Map;
 
 import org.apache.solr.SolrTestCaseHS;
-import org.apache.solr.client.solrj.SolrClient;
 import org.apache.solr.client.solrj.SolrServerException;
-import org.apache.solr.client.solrj.impl.InputStreamResponseParser;
-import org.apache.solr.client.solrj.impl.NoOpResponseParser;
-import org.apache.solr.client.solrj.request.json.DirectJsonQueryRequest;
-import org.apache.solr.client.solrj.request.json.JsonQueryRequest;
-import org.apache.solr.client.solrj.response.QueryResponse;
-import org.apache.solr.client.solrj.response.SolrResponseBase;
 import org.apache.solr.common.SolrInputDocument;
 import org.apache.solr.common.params.ModifiableSolrParams;
-import org.apache.solr.common.util.NamedList;
 import org.junit.BeforeClass;
 import org.junit.Test;