Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[FIXED JENKINS-12280] [FIXED JENKINS-11926] Make GroovyExpressionMatcher
Browse files Browse the repository at this point in the history
serializable.
  • Loading branch information
uhafner committed Jan 30, 2012
1 parent 8d59dc2 commit a39922f
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -4,6 +4,7 @@
import groovy.lang.GroovyShell;
import hudson.plugins.warnings.WarningsDescriptor;

import java.io.Serializable;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Matcher;
Expand All @@ -13,7 +14,9 @@
*
* @author Ulli Hafner
*/
public class GroovyExpressionMatcher {
public class GroovyExpressionMatcher implements Serializable {
private static final long serialVersionUID = -2218299240520838315L;

private final String script;
private final Warning falsePositive;

Expand Down

0 comments on commit a39922f

Please sign in to comment.