summaryrefslogtreecommitdiffstats
path: root/config-model-api
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2020-11-06 09:47:21 +0100
committerHarald Musum <musum@verizonmedia.com>2020-11-06 09:47:21 +0100
commit6e6882ae2e0a3002ee03a3d9604d504bfa477018 (patch)
tree0ddf3d156dda507242c10b4216fb1f34addd2793 /config-model-api
parent28e6edea2034bcb017a0d97296ca21a9e89d195c (diff)
Fix minor stuff found while reading code, no functional changes
Diffstat (limited to 'config-model-api')
-rw-r--r--config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeRefeedAction.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeRefeedAction.java b/config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeRefeedAction.java
index 1f3cb1ef83d..c5a7bd030e2 100644
--- a/config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeRefeedAction.java
+++ b/config-model-api/src/main/java/com/yahoo/config/model/api/ConfigChangeRefeedAction.java
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model.api;
/**
@@ -12,8 +12,7 @@ public interface ConfigChangeRefeedAction extends ConfigChangeAction {
default Type getType() { return Type.REFEED; }
/** Returns the name identifying this kind of change, used to identify names which should be allowed */
- // Remove this default implementation when model versions earlier than 5.125 are gone
- default String name() { return ""; }
+ String name();
/** Returns the name of the document type that one must re-feed to handle this config change */
String getDocumentType();