From bac8b9795aba7efcfcd14f2ba0725ba68c3fa466 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Mon, 21 Oct 2013 15:34:17 -0400 Subject: [PATCH] Clarified Javadoc: non-display names use '/' as a separator. --- core/src/main/java/hudson/Functions.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/hudson/Functions.java b/core/src/main/java/hudson/Functions.java index caef6f12a4..4dae0aebcc 100644 --- a/core/src/main/java/hudson/Functions.java +++ b/core/src/main/java/hudson/Functions.java @@ -1099,7 +1099,7 @@ public class Functions { * @param p the Item we want the relative display name * @param g the ItemGroup used as point of reference for the item * @return - * String like "foo » bar" + * String like "foo/bar" */ public static String getRelativeNameFrom(Item p, ItemGroup g) { return getRelativeNameFrom(p, g, false); @@ -1113,7 +1113,7 @@ public class Functions { * @param p the Item we want the relative display name * @param g the ItemGroup used as point of reference for the item * @return - * String like "foo » bar" + * String like "Foo » Bar" */ public static String getRelativeDisplayNameFrom(Item p, ItemGroup g) { return getRelativeNameFrom(p, g, true); -- GitLab