Skip to content

Commit

Permalink
Correct import formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
foster33 committed Jul 7, 2023
1 parent 92e7e83 commit f3f6c2d
Showing 1 changed file with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,17 @@
import javax.enterprise.inject.Produces;
import javax.inject.Inject;

import org.apache.log4j.Logger;
import org.easymock.EasyMock;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.security.JSSESecurityDomain;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.asset.EmptyAsset;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.context.ApplicationContext;
import datawave.webservice.common.json.DefaultMapperDecorator;
import datawave.webservice.edgedictionary.RemoteEdgeDictionary;
import datawave.query.metrics.QueryMetricQueryLogic;

import datawave.query.discovery.DiscoveryLogic;
import datawave.query.metrics.QueryMetricQueryLogic;
import datawave.query.planner.BooleanChunkingQueryPlanner;
import datawave.query.planner.DefaultQueryPlanner;
import datawave.query.planner.FacetedQueryPlanner;
import datawave.query.tables.CountingShardQueryLogic;
import datawave.query.tables.IndexQueryLogic;
import datawave.query.tables.ParentQueryLogic;
import datawave.query.tables.CountingShardQueryLogic;
import datawave.query.tables.ShardQueryLogic;
import datawave.query.tables.TLDQueryLogic;
import datawave.query.tables.facets.FacetedQueryLogic;
Expand All @@ -35,9 +25,7 @@
import datawave.query.util.DateIndexHelperFactory;
import datawave.security.authorization.DatawavePrincipal;
import datawave.security.system.CallerPrincipal;
import datawave.webservice.common.json.DefaultMapperDecorator;
import datawave.webservice.edgedictionary.EdgeDictionaryResponseTypeProducer;
import datawave.webservice.edgedictionary.RemoteEdgeDictionary;
import datawave.webservice.query.cache.QueryExpirationConfiguration;
import datawave.webservice.query.logic.DatawaveRoleManager;
import datawave.webservice.query.logic.EasyRoleManager;
Expand All @@ -47,6 +35,18 @@
import datawave.webservice.query.result.event.DefaultResponseObjectFactory;
import datawave.webservice.results.cached.CachedResultsConfiguration;

import org.apache.log4j.Logger;
import org.easymock.EasyMock;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.security.JSSESecurityDomain;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.asset.EmptyAsset;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.context.ApplicationContext;
/**
* this test ensures that our various spring contexts can be deployed successfully to Wildfly
*/
Expand Down

0 comments on commit f3f6c2d

Please sign in to comment.