diff --git a/stages-tlr/text-extraction/src/main/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/informants/MappingCombinerInformant.java b/stages-tlr/text-extraction/src/main/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/informants/MappingCombinerInformant.java index dc9c7e2..73c5afb 100644 --- a/stages-tlr/text-extraction/src/main/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/informants/MappingCombinerInformant.java +++ b/stages-tlr/text-extraction/src/main/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/informants/MappingCombinerInformant.java @@ -11,10 +11,10 @@ import edu.kit.kastel.mcse.ardoco.core.api.stage.textextraction.PhraseMapping; import edu.kit.kastel.mcse.ardoco.core.api.stage.textextraction.TextState; import edu.kit.kastel.mcse.ardoco.core.api.text.Phrase; +import edu.kit.kastel.mcse.ardoco.core.common.similarity.PhraseMappingAggregatorStrategy; import edu.kit.kastel.mcse.ardoco.core.common.tuple.Pair; import edu.kit.kastel.mcse.ardoco.core.common.util.Comparators; import edu.kit.kastel.mcse.ardoco.core.common.util.DataRepositoryHelper; -import edu.kit.kastel.mcse.ardoco.core.common.util.PhraseMappingAggregatorStrategy; import edu.kit.kastel.mcse.ardoco.core.configuration.Configurable; import edu.kit.kastel.mcse.ardoco.core.data.DataRepository; import edu.kit.kastel.mcse.ardoco.core.pipeline.agent.Informant; diff --git a/stages-tlr/text-extraction/src/test/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/agents/MappingCombinerTest.java b/stages-tlr/text-extraction/src/test/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/agents/MappingCombinerTest.java index e25b116..4a3b679 100644 --- a/stages-tlr/text-extraction/src/test/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/agents/MappingCombinerTest.java +++ b/stages-tlr/text-extraction/src/test/java/edu/kit/kastel/mcse/ardoco/tlr/textextraction/agents/MappingCombinerTest.java @@ -18,7 +18,7 @@ import edu.kit.kastel.mcse.ardoco.core.api.text.Phrase; import edu.kit.kastel.mcse.ardoco.core.api.text.PhraseType; import edu.kit.kastel.mcse.ardoco.core.api.text.Word; -import edu.kit.kastel.mcse.ardoco.core.common.util.PhraseMappingAggregatorStrategy; +import edu.kit.kastel.mcse.ardoco.core.common.similarity.PhraseMappingAggregatorStrategy; import edu.kit.kastel.mcse.ardoco.core.data.DataRepository; import edu.kit.kastel.mcse.ardoco.core.pipeline.agent.Claimant; import edu.kit.kastel.mcse.ardoco.tlr.text.providers.informants.corenlp.PhraseImpl;