summaryrefslogtreecommitdiffstats
path: root/container-core
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-04-11 14:54:56 +0200
committerJon Bratseth <bratseth@gmail.com>2022-04-11 14:54:56 +0200
commit50c7dfee0a9f32debb34d06191808cbd6ae67e4c (patch)
tree3e6b73625569779d91a4d261a280203adca89b4e /container-core
parent30f1c233e6fd26c89f3b4f194478b66cbf1152cb (diff)
Set both profile and source info first
Diffstat (limited to 'container-core')
-rw-r--r--container-core/src/main/java/com/yahoo/processing/request/CompoundName.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/container-core/src/main/java/com/yahoo/processing/request/CompoundName.java b/container-core/src/main/java/com/yahoo/processing/request/CompoundName.java
index d571bf583d6..efed58f4ab0 100644
--- a/container-core/src/main/java/com/yahoo/processing/request/CompoundName.java
+++ b/container-core/src/main/java/com/yahoo/processing/request/CompoundName.java
@@ -285,4 +285,6 @@ public final class CompoundName {
return b.length()==0 ? "" : b.substring(0, b.length()-1);
}
+ public static CompoundName from(String name) { return new CompoundName(name); }
+
}