Skip to content

Commit

Permalink
Fixed JENKINS-9106
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory committed Mar 20, 2011
1 parent 75753f4 commit 21d2321
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.399</version>
<version>1.400</version>
</parent>

<groupId>com.thalesgroup.jenkins-ci.plugins</groupId>
Expand Down
Expand Up @@ -40,8 +40,8 @@ public class CustomType extends TestType {

@DataBoundConstructor
@SuppressWarnings("unused")
public CustomType(String pattern, String customXSL, boolean faildedIfNotNew, boolean deleteOutputFiles) {
super(pattern, faildedIfNotNew, deleteOutputFiles);
public CustomType(String pattern, String customXSL, boolean faildedIfNotNew, boolean deleteOutputFiles, boolean stopProcessingIfError) {
super(pattern, faildedIfNotNew, deleteOutputFiles, stopProcessingIfError);
this.customXSL = customXSL;
}

Expand Down

0 comments on commit 21d2321

Please sign in to comment.