Skip to content

Commit

Permalink
Merge pull request #2 from mc1arke/JENKINS-22798
Browse files Browse the repository at this point in the history
[FIXED JENKINS-22798] Fix method visiblilty issue
  • Loading branch information
jglick committed May 7, 2014
2 parents 111ea03 + 1994f5e commit 9d16714
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/hudson/tasks/test/MatrixTestResult.java
Expand Up @@ -66,4 +66,12 @@ public String getTestResultPath(TestResult it) {
// Prepend Configuration path
return it.getOwner().getParent().getShortUrl() + super.getTestResultPath(it);
}

/* We are required to override and call super since the parent class is in
* a different classloader, otherwise we get IllegalAccessErrors (JENKINS-22798)
*/
@Override
protected void add(AbstractTestResultAction child) {
super.add(child);
}
}

0 comments on commit 9d16714

Please sign in to comment.