Skip to content

Commit

Permalink
Merge pull request #7 from jglick/LegacyCodeCause
Browse files Browse the repository at this point in the history
scheduleBuild() uses the deprecated LegacyCodeCause
  • Loading branch information
jglick committed Sep 11, 2015
2 parents 1963091 + 3b51f9e commit ff366f0
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/main/java/jenkins/branch/MultiBranchProject.java
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ private synchronized void loadIndexing() {
}
}
if (indexing.getTimeInMillis() == 0 && isBuildable()) {
scheduleBuild();
scheduleBuild(null);
}
}

Expand Down Expand Up @@ -1065,7 +1065,7 @@ public void doConfigSubmit(StaplerRequest req, StaplerResponse rsp)
}
}
if (reindex) {
scheduleBuild();
scheduleBuild(null);
}
}

Expand Down Expand Up @@ -1964,13 +1964,17 @@ public boolean isBuildable() {
/**
* {@inheritDoc}
*/
@Deprecated
@Override
public boolean scheduleBuild() {
return scheduleBuild(new Cause.LegacyCodeCause());
}

/**
* {@inheritDoc}
*/
@Deprecated
@Override
public boolean scheduleBuild(int quietPeriod) {
return scheduleBuild(quietPeriod, new Cause.LegacyCodeCause());
}
Expand Down

0 comments on commit ff366f0

Please sign in to comment.