Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-3966] added a new extension point for workspace cleaner
  • Loading branch information
kohsuke committed Apr 20, 2011
1 parent ef31c19 commit 07c6c4f
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 0 deletions.
7 changes: 7 additions & 0 deletions core/src/main/java/hudson/scm/NoCleaner.java
@@ -0,0 +1,7 @@
package hudson.scm;

/**
* @author Kohsuke Kawaguchi
*/
public class NoCleaner {
}
7 changes: 7 additions & 0 deletions core/src/main/java/hudson/scm/RmRfCleaner.java
@@ -0,0 +1,7 @@
package hudson.scm;

/**
* @author Kohsuke Kawaguchi
*/
public class RmRfCleaner {
}
7 changes: 7 additions & 0 deletions core/src/main/java/hudson/scm/WorkspaceCleaner.java
@@ -0,0 +1,7 @@
package hudson.scm;

/**
* @author Kohsuke Kawaguchi
*/
public class WorkspaceCleaner {
}
7 changes: 7 additions & 0 deletions core/src/main/java/hudson/scm/WorkspaceCleanerDescriptor.java
@@ -0,0 +1,7 @@
package hudson.scm;

/**
* @author Kohsuke Kawaguchi
*/
public class WorkspaceCleanerDescriptor {
}
Empty file.
Empty file.

0 comments on commit 07c6c4f

Please sign in to comment.