Skip to content

Commit

Permalink
fix compiler/errorprone warnings for UnusedVariable
Browse files Browse the repository at this point in the history
  • Loading branch information
mprins committed Aug 29, 2024
1 parent a1ffdaa commit 433f5cd
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@
import org.tailormap.api.geotools.featuresources.FeatureSourceFactoryHelper;
import org.tailormap.api.persistence.SearchIndex;
import org.tailormap.api.persistence.TMFeatureType;
import org.tailormap.api.repository.FeatureSourceRepository;
import org.tailormap.api.repository.FeatureTypeRepository;
import org.tailormap.api.repository.GeoServiceRepository;
import org.tailormap.api.repository.SearchIndexRepository;
import org.tailormap.api.solr.SolrHelper;
import org.tailormap.api.viewer.model.ErrorResponse;
Expand All @@ -57,21 +55,15 @@ public class SolrAdminController {
LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
private final FeatureSourceFactoryHelper featureSourceFactoryHelper;

private final FeatureSourceRepository featureSourceRepository;
private final FeatureTypeRepository featureTypeRepository;
private final GeoServiceRepository geoServiceRepository;
private final SearchIndexRepository searchIndexRepository;

public SolrAdminController(
FeatureSourceFactoryHelper featureSourceFactoryHelper,
FeatureSourceRepository featureSourceRepository,
FeatureTypeRepository featureTypeRepository,
GeoServiceRepository geoServiceRepository,
SearchIndexRepository searchIndexRepository) {
this.featureSourceFactoryHelper = featureSourceFactoryHelper;
this.featureSourceRepository = featureSourceRepository;
this.featureTypeRepository = featureTypeRepository;
this.geoServiceRepository = geoServiceRepository;
this.searchIndexRepository = searchIndexRepository;
}

Expand Down

0 comments on commit 433f5cd

Please sign in to comment.