aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/docstore/logdatastore.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/docstore/logdatastore.h')
-rw-r--r--searchlib/src/vespa/searchlib/docstore/logdatastore.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/searchlib/src/vespa/searchlib/docstore/logdatastore.h b/searchlib/src/vespa/searchlib/docstore/logdatastore.h
index 52d78cac2bd..91143ecd1d2 100644
--- a/searchlib/src/vespa/searchlib/docstore/logdatastore.h
+++ b/searchlib/src/vespa/searchlib/docstore/logdatastore.h
@@ -52,12 +52,10 @@ public:
double getMinFileSizeFactor() const { return _minFileSizeFactor; }
bool crcOnReadDisabled() const { return _skipCrcOnRead; }
- bool compact2ActiveFile() const { return _compact2ActiveFile; }
const CompressionConfig & compactCompression() const { return _compactCompression; }
const WriteableFileChunk::Config & getFileConfig() const { return _fileConfig; }
Config & disableCrcOnRead(bool v) { _skipCrcOnRead = v; return *this;}
- Config & compact2ActiveFile(bool v) { _compact2ActiveFile = v; return *this; }
bool operator == (const Config &) const;
private:
@@ -66,7 +64,6 @@ public:
double _maxBucketSpread;
double _minFileSizeFactor;
bool _skipCrcOnRead;
- bool _compact2ActiveFile;
CompressionConfig _compactCompression;
WriteableFileChunk::Config _fileConfig;
};