summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-06-12 10:50:59 +0200
committerHarald Musum <musum@yahooinc.com>2023-06-12 10:50:59 +0200
commita6d524a04c36132e848454f7b60585fd3aed7da1 (patch)
treea9de6022d85cbc58abd303751b9e47a981d7622b /config-model
parent39f44c787daa051d8308ce6871e346a61a0d2f8d (diff)
Delete unused class
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/search/QrsCache.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/search/QrsCache.java b/config-model/src/main/java/com/yahoo/vespa/model/container/search/QrsCache.java
deleted file mode 100644
index 64b3e67b616..00000000000
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/search/QrsCache.java
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.model.container.search;
-
-/**
- * A helper class to wrap a set of QRS cache settings.
- *
- * @author Steinar Knutsen
- */
-public class QrsCache {
-
- public final Integer size;
-
- public QrsCache(Integer size) {
- this.size = size;
- }
-
-}