Skip to content

Commit

Permalink
[JENKINS-17230] Added backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgarnet committed Apr 11, 2013
1 parent dd1a2ca commit 43155ef
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Expand Up @@ -32,6 +32,11 @@ public class ConfigurationRotator extends SCM {

private AbstractConfigurationRotatorSCM acrs;

/**
* Just for backwards compatibility.
*/
private boolean printDebug = false;

private static Logger logger = Logger.getLogger( ConfigurationRotator.class.getName() );

public enum ResultType {
Expand Down
@@ -0,0 +1,23 @@
package net.praqma.jenkins.configrotator.scm.clearcaseucm;

import hudson.model.AbstractBuild;
import hudson.scm.ChangeLogSet;
import hudson.scm.ChangeLogSet.Entry;
import java.io.*;
import java.util.logging.Logger;
import net.praqma.jenkins.configrotator.scm.ConfigRotatorChangeLogParser;
import org.xml.sax.SAXException;

/**
* Keps for backwards compatibility.
* @author Praqma
*/
public class ClearCaseUCMConfigRotatorChangeLogParser extends ConfigRotatorChangeLogParser {

private static final Logger logger = Logger.getLogger(ClearCaseUCMConfigRotatorChangeLogParser.class.toString());

@Override
public ChangeLogSet<? extends Entry> parse(AbstractBuild build, File changelogFile) throws IOException, SAXException {
return null;
}
}

0 comments on commit 43155ef

Please sign in to comment.