summaryrefslogtreecommitdiffstats
path: root/vsm
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-02-22 21:53:21 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2017-02-22 21:53:21 +0100
commit53f09660891181825dbd3364c63b0da304a21968 (patch)
tree04540b6a0d4bff6f20b6509745353ed1a146b3ae /vsm
parentc77914aa8c5d82ec5f66f7020dbc40bc5c8e72c0 (diff)
Remove unused code
Diffstat (limited to 'vsm')
-rw-r--r--vsm/src/vespa/vsm/vsm/vsmquerynoderesult.cpp6
-rw-r--r--vsm/src/vespa/vsm/vsm/vsmquerynoderesult.h19
2 files changed, 0 insertions, 25 deletions
diff --git a/vsm/src/vespa/vsm/vsm/vsmquerynoderesult.cpp b/vsm/src/vespa/vsm/vsm/vsmquerynoderesult.cpp
deleted file mode 100644
index 98650f41eef..00000000000
--- a/vsm/src/vespa/vsm/vsm/vsmquerynoderesult.cpp
+++ /dev/null
@@ -1,6 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include "vsmquerynoderesult.h"
-
-namespace vsm {
- IMPLEMENT_DUPLICATE(VsmQueryNodeResult);
-}
diff --git a/vsm/src/vespa/vsm/vsm/vsmquerynoderesult.h b/vsm/src/vespa/vsm/vsm/vsmquerynoderesult.h
deleted file mode 100644
index 13cfaedb932..00000000000
--- a/vsm/src/vespa/vsm/vsm/vsmquerynoderesult.h
+++ /dev/null
@@ -1,19 +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 <vespa/searchlib/query/querynoderesultbase.h>
-
-namespace vsm
-{
-
-class VsmQueryNodeResult : public search::QueryNodeResultBase
-{
- public:
- DUPLICATE(VsmQueryNodeResult);
- virtual ~VsmQueryNodeResult() { }
- virtual bool evaluate() const { return true; }
- virtual void reset() { }
-};
-
-}
-