aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2022-09-06 16:05:26 +0200
committerTor Egge <Tor.Egge@online.no>2022-09-06 16:05:26 +0200
commitc5f07cf368cae454e0db4cae3c8a77be13f89526 (patch)
tree44262e53033ec245e9a8a7b6b5cec33ea6113215 /searchsummary
parentc2236fbba225babc5088cc9a06638b76b2183b69 (diff)
Stop using summarymap config in backend.
Diffstat (limited to 'searchsummary')
-rw-r--r--searchsummary/src/tests/docsummary/summary_field_converter/summary_field_converter_test.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/searchsummary/src/tests/docsummary/summary_field_converter/summary_field_converter_test.cpp b/searchsummary/src/tests/docsummary/summary_field_converter/summary_field_converter_test.cpp
index 1d7795d26dc..0eff397bc10 100644
--- a/searchsummary/src/tests/docsummary/summary_field_converter/summary_field_converter_test.cpp
+++ b/searchsummary/src/tests/docsummary/summary_field_converter/summary_field_converter_test.cpp
@@ -40,7 +40,6 @@
#include <vespa/searchsummary/docsummary/linguisticsannotation.h>
#include <vespa/searchsummary/docsummary/searchdatatype.h>
#include <vespa/searchcommon/common/schema.h>
-#include <vespa/config-summarymap.h>
#include <vespa/vespalib/geo/zcurve.h>
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/vespalib/data/slime/json_format.h>
@@ -90,8 +89,6 @@ using document::WeightedSetFieldValue;
using search::index::Schema;
using search::linguistics::SPANTREE_NAME;
using search::linguistics::TERM;
-using vespa::config::search::SummarymapConfig;
-using vespa::config::search::SummarymapConfigBuilder;
using vespalib::Slime;
using vespalib::eval::SimpleValue;
using vespalib::eval::TensorSpec;
@@ -136,7 +133,6 @@ FieldBlock::~FieldBlock() = default;
class Test : public vespalib::TestApp {
std::unique_ptr<Schema> _schema;
- std::unique_ptr<SummarymapConfigBuilder> _summarymap;
std::shared_ptr<const DocumentTypeRepo> _documentRepo;
const DocumentType *_documentType;
document::FixedTypeRepo _fixedRepo;
@@ -286,7 +282,6 @@ Test::Main()
void Test::setUp() {
_schema = std::make_unique<Schema>();
- _summarymap = std::make_unique<SummarymapConfigBuilder>();
}
void Test::tearDown() {