提交 b35f834b 编写于 作者: J Jesse Glick

[JENKINS-22142] Noting merge of #1179.

上级 e05358bf
...@@ -55,6 +55,9 @@ Upcoming changes</a> ...@@ -55,6 +55,9 @@ Upcoming changes</a>
<!-- Record your changes in the trunk here. --> <!-- Record your changes in the trunk here. -->
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=--> <div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
<ul class=image> <ul class=image>
<li class=bug>
Fixed NPE from view new job name autocompletion since 1.553.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-22142">issue 22142</a>)
<li class=rfe> <li class=rfe>
JNLP slaves are now handled through NIO-based remoting channels for better scalability. JNLP slaves are now handled through NIO-based remoting channels for better scalability.
</ul> </ul>
......
...@@ -26,7 +26,6 @@ package hudson.model; ...@@ -26,7 +26,6 @@ package hudson.model;
import hudson.views.ListViewColumn; import hudson.views.ListViewColumn;
import hudson.views.ListViewColumnDescriptor; import hudson.views.ListViewColumnDescriptor;
import hudson.views.ViewJobFilter; import hudson.views.ViewJobFilter;
import jenkins.model.Jenkins;
import org.kohsuke.accmod.Restricted; import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.DoNotUse; import org.kohsuke.accmod.restrictions.DoNotUse;
import org.kohsuke.stapler.QueryParameter; import org.kohsuke.stapler.QueryParameter;
...@@ -72,7 +71,6 @@ public abstract class ViewDescriptor extends Descriptor<View> { ...@@ -72,7 +71,6 @@ public abstract class ViewDescriptor extends Descriptor<View> {
/** /**
* Auto-completion for the "copy from" field in the new job page. * Auto-completion for the "copy from" field in the new job page.
* @since 1.553
*/ */
@Restricted(DoNotUse.class) @Restricted(DoNotUse.class)
public AutoCompletionCandidates doAutoCompleteCopyNewItemFrom(@QueryParameter final String value, @AncestorInPath ItemGroup container) { public AutoCompletionCandidates doAutoCompleteCopyNewItemFrom(@QueryParameter final String value, @AncestorInPath ItemGroup container) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册