diff --git a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/di/IndexSchemaServiceOverrideImpl.java b/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/di/IndexSchemaServiceOverrideImpl.java deleted file mode 100644 index 63bac143a1b1c616c723b3780e8974e5e101310e..0000000000000000000000000000000000000000 --- a/provider/indexer-azure/src/main/java/org/opengroup/osdu/indexer/azure/di/IndexSchemaServiceOverrideImpl.java +++ /dev/null @@ -1,26 +0,0 @@ -package org.opengroup.osdu.indexer.azure.di; - -import org.opengroup.osdu.indexer.service.IndexSchemaServiceImpl; -import org.opengroup.osdu.indexer.service.SchemaService; -import org.springframework.context.annotation.Primary; -import org.springframework.stereotype.Service; - -import javax.inject.Inject; -import java.io.UnsupportedEncodingException; -import java.net.URISyntaxException; - -@Primary -@Service -public class IndexSchemaServiceOverrideImpl extends IndexSchemaServiceImpl { - - private final SchemaService schemaService; - - @Inject - public IndexSchemaServiceOverrideImpl(SchemaService schemaService) { - this.schemaService = schemaService; - } - - protected String getSchema(String kind) throws URISyntaxException, UnsupportedEncodingException { - return this.schemaService.getSchema(kind); - } -}