aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/config/model
diff options
context:
space:
mode:
authorHarald Musum <musum@yahoo-inc.com>2017-02-28 14:07:39 +0100
committerHarald Musum <musum@yahoo-inc.com>2017-02-28 14:07:39 +0100
commit15d245682f1d0a15e609e270c542c040efd4cdf2 (patch)
treecafd7a102cedd73b7c9bf78c05b562c5865010b8 /config-model/src/main/java/com/yahoo/config/model
parentc351c34c95c7e30a0122af2a6819d30b4e9fe556 (diff)
Remove pointless method for creating link to doc
Diffstat (limited to 'config-model/src/main/java/com/yahoo/config/model')
-rw-r--r--config-model/src/main/java/com/yahoo/config/model/ConfigModelUtils.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/config-model/src/main/java/com/yahoo/config/model/ConfigModelUtils.java b/config-model/src/main/java/com/yahoo/config/model/ConfigModelUtils.java
index f64eee6e863..d5d57b3943c 100644
--- a/config-model/src/main/java/com/yahoo/config/model/ConfigModelUtils.java
+++ b/config-model/src/main/java/com/yahoo/config/model/ConfigModelUtils.java
@@ -1,16 +1,11 @@
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model;
-import javax.xml.xpath.XPath;
-import javax.xml.xpath.XPathExpressionException;
-import javax.xml.xpath.XPathFactory;
import java.io.Serializable;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
-import static javax.xml.xpath.XPathConstants.BOOLEAN;
-
import static com.yahoo.text.Lowercase.toLowerCase;
/**
@@ -51,14 +46,4 @@ public class ConfigModelUtils implements Serializable {
return ConfigModelUtils.day2int.get(toLowerCase(day));
}
- /**
- * Create a string with link to documentation for latest release.
- *
- * @param filePath Relative path of the file to link to, e.g. reference/services-jdisc.html
- * @return a String with link to documentation
- */
- public static String createDocLink(String filePath) {
- return filePath;
- }
-
}