We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65bf087 commit bc6960fCopy full SHA for bc6960f
src/main/java/org/audit4j/core/AuditManager.java
@@ -42,7 +42,7 @@ private AuditManager() {
42
}
43
44
/** The audit manager. */
45
- private static volatile AuditManager auditManager;
+ private static volatile IAuditManager auditManager;
46
47
/**
48
* Audit.
@@ -97,8 +97,8 @@ public boolean audit(AnnotationAuditEvent annotationEvent) {
97
*
98
* @return single instance of AuditHelper
99
*/
100
- public static AuditManager getInstance() {
101
- AuditManager result = auditManager;
+ public static IAuditManager getInstance() {
+ IAuditManager result = auditManager;
102
if(result == null) {
103
synchronized (AuditManager.class) {
104
result = auditManager;
0 commit comments