File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/org/jenkinsci/plugins/workflow/log Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 4848import java .util .stream .Stream ;
4949import javax .annotation .CheckForNull ;
5050import javax .annotation .Nonnull ;
51+ import javax .annotation .Nullable ;
5152import jenkins .util .BuildListenerAdapter ;
5253import jenkins .util .JenkinsJVM ;
5354import org .jenkinsci .plugins .workflow .flow .FlowExecutionOwner ;
@@ -87,7 +88,7 @@ public abstract class TaskListenerDecorator implements /* TODO Remotable */ Seri
8788 * @param subsequent an overriding decorator, if any
8889 * @return null, or {@code original} or {@code subsequent}, or a merged result applying one then the other
8990 */
90- public static @ CheckForNull TaskListenerDecorator merge (@ CheckForNull TaskListenerDecorator original , @ CheckForNull TaskListenerDecorator subsequent ) {
91+ public static @ Nullable TaskListenerDecorator merge (@ CheckForNull TaskListenerDecorator original , @ CheckForNull TaskListenerDecorator subsequent ) {
9192 if (original == null ) {
9293 if (subsequent == null ) {
9394 return null ;
You can’t perform that action at this time.
0 commit comments