Skip to content

Commit

Permalink
[FIXED JENKINS-3265] Hotfix for regression in matrix project loading …
Browse files Browse the repository at this point in the history
…from 25084f5.
  • Loading branch information
jglick committed Mar 19, 2013
1 parent 78b2634 commit 3370e6e
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 3370e6e

Please sign in to comment.