Skip to content

Commit

Permalink
Renamed job to be inline with other classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
brettryan committed Jul 9, 2012
1 parent 0e1d1ac commit abb5dbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* PurgeOldAttachmentsJob.java Jul 9 2012, 04:31
* PurgeAttachmentsJob.java Jul 9 2012, 04:31
*
* Copyright 2012 Drunken Dev. All rights reserved.
* Use is subject to license terms.
Expand All @@ -24,16 +24,16 @@
*
* @author Brett Ryan
*/
public class PurgeOldAttachmentsJob extends AbstractJob {
public class PurgeAttachmentsJob extends AbstractJob {

private static final Logger LOG =
LoggerFactory.getLogger(PurgeOldAttachmentsJob.class);
LoggerFactory.getLogger(PurgeAttachmentsJob.class);
private AttachmentManager attachmentManager;

/**
* Creates a new {@code PurgeAttachmentsJob} instance.
*/
public PurgeOldAttachmentsJob() {
public PurgeAttachmentsJob() {
System.out.println("Creating purge-old-attachment-job instance.");
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/atlassian-plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<job key="purge-old-attachments-job"
name="Purge Old Attachment Versions"
class="com.drunkendev.confluence.plugins.attachments.PurgeOldAttachmentsJob"
class="com.drunkendev.confluence.plugins.attachments.PurgeAttachmentsJob"
perClusterJob="false" />

<trigger key="purge-old-attachments-trigger"
Expand Down

0 comments on commit abb5dbc

Please sign in to comment.