summaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon@oath.com>2017-10-23 20:31:31 +0200
committerGitHub <noreply@github.com>2017-10-23 20:31:31 +0200
commitf777a0c3323d2fad706addb5426e1889f5332e0d (patch)
tree7532bba6326061e0294acb468cab96e42ee52e3c /document
parent0d7ce451d2d4cda2ee6938573d130bd3ccff092b (diff)
Revert "Use existing bucket space instead of placeholder value"
Diffstat (limited to 'document')
-rw-r--r--document/src/vespa/document/test/CMakeLists.txt1
-rw-r--r--document/src/vespa/document/test/make_bucket_space.cpp12
-rw-r--r--document/src/vespa/document/test/make_bucket_space.h13
3 files changed, 0 insertions, 26 deletions
diff --git a/document/src/vespa/document/test/CMakeLists.txt b/document/src/vespa/document/test/CMakeLists.txt
index 1620a8fad39..f16bfe0144a 100644
--- a/document/src/vespa/document/test/CMakeLists.txt
+++ b/document/src/vespa/document/test/CMakeLists.txt
@@ -1,7 +1,6 @@
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_library(document_test OBJECT
SOURCES
- make_bucket_space.cpp
make_document_bucket.cpp
DEPENDS
)
diff --git a/document/src/vespa/document/test/make_bucket_space.cpp b/document/src/vespa/document/test/make_bucket_space.cpp
deleted file mode 100644
index a213e5e36b7..00000000000
--- a/document/src/vespa/document/test/make_bucket_space.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#include "make_bucket_space.h"
-
-namespace document::test {
-
-BucketSpace makeBucketSpace()
-{
- return BucketSpace::placeHolder();
-}
-
-}
diff --git a/document/src/vespa/document/test/make_bucket_space.h b/document/src/vespa/document/test/make_bucket_space.h
deleted file mode 100644
index 8289ec2030a..00000000000
--- a/document/src/vespa/document/test/make_bucket_space.h
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#pragma once
-
-#include <vespa/document/bucket/bucketspace.h>
-
-namespace document::test {
-
-// Helper function used by unit tests
-
-BucketSpace makeBucketSpace();
-
-}