Skip to content

Commit

Permalink
Merge pull request #34 from lrobertson39/master
Browse files Browse the repository at this point in the history
[FIXED JENKINS-23740] Re-use opList so that if null or empty, default to AbortOperation is used.
  • Loading branch information
ikedam committed Jul 10, 2014
2 parents ca80b3f + cf1fd6f commit 12cb64b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -136,7 +136,7 @@ public void doRun() {
// defaults to AbortOperation.
opList = Arrays.<BuildTimeOutOperation>asList(new AbortOperation());
}
for( BuildTimeOutOperation op: getOperationList() ) {
for( BuildTimeOutOperation op: opList ) {
try {
if (!op.perform(build, listener, effectiveTimeout)) {
operationFailed = true;
Expand Down

0 comments on commit 12cb64b

Please sign in to comment.