summaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/schema_config_validator.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/server/schema_config_validator.h')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/schema_config_validator.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/schema_config_validator.h b/searchcore/src/vespa/searchcore/proton/server/schema_config_validator.h
deleted file mode 100644
index a97cd612f30..00000000000
--- a/searchcore/src/vespa/searchcore/proton/server/schema_config_validator.h
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#pragma once
-
-#include "config_validator_result.h"
-
-namespace search { namespace index { class Schema; } }
-
-namespace proton {
-
-/**
- * Class used to validate new schema before starting using it.
- **/
-struct SchemaConfigValidator
-{
- static configvalidator::Result
- validate(const search::index::Schema &newSchema,
- const search::index::Schema &oldSchema,
- const search::index::Schema &oldHistory);
-};
-
-} // namespace proton
-