提交 299af752 编写于 作者: J Jesse Glick

Touch-ups related to PR #757.

上级 eb49ae16
......@@ -56,7 +56,8 @@ Upcoming changes</a>
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
<ul class=image>
<li class=rfe>
Views can now include jobs located within folders
Views can now include jobs located within folders.
(<a href="https://github.com/jenkinsci/jenkins/pull/757">pull 757</a>)
<li class=rfe>
Added confirmation dialog before reloading configuration from disk.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-15340">issue 15340</a>)
......
......@@ -963,7 +963,7 @@ public class Functions {
/**
* Gets all the {@link TopLevelItem}s recursively in the {@link ItemGroup} tree.
*
* @since XXX
* @since 1.512
*/
public static List<TopLevelItem> getAllTopLevelItems(ItemGroup root) {
return Items.getAllItems(root, TopLevelItem.class);
......@@ -973,7 +973,7 @@ public class Functions {
/**
* Gets the relative display name to the given item from the specified group.
*
* @since XXX
* @since 1.512
* @param p the Item we want the relative display name
* @param g the ItemGroup used as point of reference for the item
* @return
......
......@@ -329,7 +329,7 @@ public abstract class AbstractItem extends Actionable implements Item, HttpDelet
/**
* This method only exists to disambiguate {@link #getRelativeNameFrom(ItemGroup)} and {@link #getRelativeNameFrom(Item)}
* @since XXX
* @since 1.512
* @see #getRelativeNameFrom(ItemGroup)
*/
public String getRelativeNameFromGroup(ItemGroup p) {
......
......@@ -240,7 +240,7 @@ public class Items {
* Gets all the {@link Item}s recursively in the {@link ItemGroup} tree
* and filter them by the given type.
*
* @since XXX
* @since 1.512
*/
public static <T extends Item> List<T> getAllItems(final ItemGroup root, Class<T> type) {
List<T> r = new ArrayList<T>();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册