diff options
| author | Stefan Boberg <[email protected]> | 2021-05-25 12:54:06 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-05-25 12:54:06 +0200 |
| commit | e9a1089cfb918a7790503309726d9b6cd5004c39 (patch) | |
| tree | 93b4b20b2c19b2c0bb80a7862f3ea7d73c80bffc /zenstore/filecas.cpp | |
| parent | Structured cache now verifies attachment payloads (diff) | |
| download | zen-e9a1089cfb918a7790503309726d9b6cd5004c39.tar.xz zen-e9a1089cfb918a7790503309726d9b6cd5004c39.zip | |
Removed pointer-based InsertChunk from CAS store interface.
All code must now use the IoBuffer path
Diffstat (limited to 'zenstore/filecas.cpp')
| -rw-r--r-- | zenstore/filecas.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/zenstore/filecas.cpp b/zenstore/filecas.cpp index 1e9b50e63..4f5cf370e 100644 --- a/zenstore/filecas.cpp +++ b/zenstore/filecas.cpp @@ -331,10 +331,6 @@ public: } } - virtual CasStore::InsertResult InsertChunk(const void* chunkData, size_t chunkSize, const IoHash& chunkHash) override - { - return m_Strategy.InsertChunk(chunkData, chunkSize, chunkHash); - } virtual CasStore::InsertResult InsertChunk(IoBuffer Chunk, const IoHash& chunkHash) override { return m_Strategy.InsertChunk(Chunk, chunkHash); |