Skip to content

Commit

Permalink
[JENKINS-18429] Correcting faulty logic in 8b4f304.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Aug 30, 2013
1 parent 3bf39c1 commit 1007c3f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -100,10 +100,10 @@ public static List<UISample> getOtherSamples() {
for (UISample uiSample : UISample.all()) {
for (SourceFile src : uiSample.getSourceFiles()) {
if (src.name.contains("groovy")) {
r.add(uiSample);
continue OUTER;
}
}
r.add(uiSample);
}
return r;
}
Expand Down

0 comments on commit 1007c3f

Please sign in to comment.