summaryrefslogtreecommitdiffstats
path: root/config-model-api/src/main
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2022-01-26 13:50:16 +0100
committerGitHub <noreply@github.com>2022-01-26 13:50:16 +0100
commitaef6dbaa7a3c4d885485b0905b9c2f84d0aedc6f (patch)
treeecfb2f612bf7b183d70ee273e0a83bf0dbc5db10 /config-model-api/src/main
parent1ecbb8ced4c2599155a2438625987b78e174bd5a (diff)
parent5869796c08003f41f0ac8e4738414d136b075b1d (diff)
Merge pull request #20938 from vespa-engine/bratseth/modular-profiles
Bratseth/modular profiles
Diffstat (limited to 'config-model-api/src/main')
-rw-r--r--config-model-api/src/main/java/com/yahoo/config/application/api/ApplicationPackage.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/config-model-api/src/main/java/com/yahoo/config/application/api/ApplicationPackage.java b/config-model-api/src/main/java/com/yahoo/config/application/api/ApplicationPackage.java
index d07df82fda1..c40ce1ebeb1 100644
--- a/config-model-api/src/main/java/com/yahoo/config/application/api/ApplicationPackage.java
+++ b/config-model-api/src/main/java/com/yahoo/config/application/api/ApplicationPackage.java
@@ -25,9 +25,6 @@ import java.util.jar.JarEntry;
* Represents an application package, that is, used as input when creating a VespaModel and as
* a general reference to all contents in an application.
*
- * The class hides detail as to whether the source is local files or ZooKeeper
- * data in config server.
- *
* @author Vegard Havdal
*/
public interface ApplicationPackage {
@@ -129,7 +126,6 @@ public interface ApplicationPackage {
* Returns the files in a directory as readers. The readers <b>must</b>
* be closed by the caller.
*
- *
* @param pathFromRoot the relative path string from the root of the application package
* @param suffix the suffix of files to return, or null to return all
* @param recurse return files in all subdirectories (recursively) as well
@@ -141,7 +137,7 @@ public interface ApplicationPackage {
/** Same as getFiles(pathFromRoot, suffix, false) */
default List<NamedReader> getFiles(Path pathFromRoot, String suffix) {
- return getFiles(pathFromRoot,suffix,false);
+ return getFiles(pathFromRoot, suffix, false);
}
/** Returns the major version this application is valid for, or empty if it is valid for all versions */