Skip to content

Commit

Permalink
Remove unused Auditor.engine
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Apr 28, 2023
1 parent 6eaaaeb commit 5ef226d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,6 @@ public void initPluginRegistry() throws Exception {

public void initAuditor() throws Exception {
auditor = new Auditor();
auditor.setCMSEngine(this);
auditor.init();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import com.netscape.certsrv.logging.SignedAuditEvent;
import com.netscape.cms.logging.Logger;
import com.netscape.cms.logging.SignedAuditLogger;
import com.netscape.cmscore.apps.CMSEngine;

/**
* @author Endi S. Dewata
Expand All @@ -38,20 +37,11 @@ public class Auditor {
public final static String SIGNED_AUDIT_RESOURCE = "Resource";
public final static String SIGNED_AUDIT_EMPTY_NAME_VALUE_PAIR = "Unknown";

protected CMSEngine engine;
protected Logger signedAuditLogger;

public Auditor() {
}

public CMSEngine getCMSEngine() {
return engine;
}

public void setCMSEngine(CMSEngine engine) {
this.engine = engine;
}

public void init() {
signedAuditLogger = new SignedAuditLogger();
}
Expand Down

0 comments on commit 5ef226d

Please sign in to comment.