aboutsummaryrefslogtreecommitdiffstats
path: root/vsm
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2021-11-18 12:46:35 +0000
committerArne H Juul <arnej@yahooinc.com>2021-11-18 12:47:00 +0000
commita84b1073467eab96d0e08c4c9fd42cc343584791 (patch)
treec13e0a610539b4363ab0a60cb103cf1f63debaa6 /vsm
parent57183d087ede775e56b642286d43264ee8595984 (diff)
we no longer make any XML strings
Diffstat (limited to 'vsm')
-rw-r--r--vsm/src/vespa/vsm/vsm/docsumfilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vsm/src/vespa/vsm/vsm/docsumfilter.cpp b/vsm/src/vespa/vsm/vsm/docsumfilter.cpp
index d6dcdee0eb4..a74e41dfb3f 100644
--- a/vsm/src/vespa/vsm/vsm/docsumfilter.cpp
+++ b/vsm/src/vespa/vsm/vsm/docsumfilter.cpp
@@ -449,7 +449,7 @@ DocsumFilter::getMappedDocsum(uint32_t id)
_packer.Init(resClass->GetClassID());
for (FieldSpecList::iterator it(_fields.begin()), end = _fields.end(); it != end; ++it) {
ResType type = it->getResultType();
- if (type == RES_JSONSTRING || type == RES_XMLSTRING) {
+ if (type == RES_JSONSTRING) {
// this really means 'structured data'
writeSlimeField(*it, doc, _packer);
} else {