Update repository/src/main/java/org/alfresco/repo/audit/AuditRecordReporterImpl.java

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Kacper Magdziarz
2025-09-09 14:38:57 +02:00
committed by GitHub
parent affb8bcf20
commit b26d8f9037

View File

@@ -27,9 +27,15 @@ package org.alfresco.repo.audit;
public class AuditRecordReporterImpl implements AuditRecordReporter
{
/**
* This method intentionally has an empty implementation.
* <p>
* This class provides a no-op implementation of {@link AuditRecordReporter}.
* Implement this method if audit record reporting is required in the future.
*/
@Override
public void reportAuditRecord(AuditRecord auditRecord)
{
// empty implementation
// No operation performed.
}
}