Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scheduleBuild() uses the deprecated LegacyCodeCause #7

Merged
merged 1 commit into from
Sep 11, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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