Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-3265] Hotfix for regression in matrix project loading …
…from 25084f5.(cherry picked from commit 3370e6e)
  • Loading branch information
jglick authored and kohsuke committed Mar 25, 2013
1 parent 38cbd3a commit 6b1f8d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/src/main/java/hudson/matrix/MatrixProject.java
Expand Up @@ -666,6 +666,9 @@ public MatrixConfiguration getItem(String name) {
}

public MatrixConfiguration getItem(Combination c) {
if (configurations == null) {
return null;
}
return configurations.get(c);
}

Expand Down

0 comments on commit 6b1f8d1

Please sign in to comment.