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

Noting summary.jelly view in run actions.

上级 3bc5381d
......@@ -915,6 +915,14 @@ public abstract class AbstractBuild<P extends AbstractProject<P,R>,R extends Abs
public Calendar due() {
return getTimestamp();
}
/**
* {@inheritDoc}
* The action may have a {@code summary.jelly} view containing a {@code <t:summary>} or other {@code <tr>}.
*/
@Override public void addAction(Action a) {
super.addAction(a);
}
@SuppressWarnings("deprecation")
public List<Action> getPersistentActions(){
......
......@@ -362,7 +362,11 @@ public abstract class Run <JobT extends Job<JobT,RunT>,RunT extends Run<JobT,Run
}
return Collections.unmodifiableList(actions);
}
/**
* {@inheritDoc}
* A {@link RunAction2} is handled specially.
*/
@SuppressWarnings("deprecation")
@Override
public void addAction(Action a) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册