Skip to content

Commit

Permalink
[JENKINS-41948] Add bridge method
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenc committed Feb 14, 2017
1 parent a8ae07c commit 8724111
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/jenkins/branch/MultiBranchProject.java
Expand Up @@ -807,6 +807,14 @@ public File getJobsDir() {
return new File(getRootDir(), "branches");
}

/**
* {@inheritDoc}
*/
@Override
public File getRootDirFor(P child) {
return super.getRootDirFor(child); // need the bridge method to provide binary compatibility
}

/**
* Returns the directory that branch indexing is stored in.
*
Expand Down

0 comments on commit 8724111

Please sign in to comment.