diff --git a/contrib/examples/checks/com/mycompany/checks/LimitImplementationFiles.java b/contrib/examples/checks/com/mycompany/checks/LimitImplementationFiles.java index 9da280a3d..b10086bcf 100644 --- a/contrib/examples/checks/com/mycompany/checks/LimitImplementationFiles.java +++ b/contrib/examples/checks/com/mycompany/checks/LimitImplementationFiles.java @@ -60,7 +60,7 @@ public class LimitImplementationFiles // errors in the same file // fire the errors for this file to the AuditListeners - dispatcher.fireErrors(path, getMessageCollector().getMessages()); + fireErrors(path); // signal end of file to AuditListeners dispatcher.fireFileFinished(path); diff --git a/docs/releasenotes.html b/docs/releasenotes.html index 617ab4c21..ebad7fecd 100644 --- a/docs/releasenotes.html +++ b/docs/releasenotes.html @@ -111,6 +111,9 @@
diff --git a/docs/writingchecks.html b/docs/writingchecks.html index e68fd470b..d50797336 100644 --- a/docs/writingchecks.html +++ b/docs/writingchecks.html @@ -529,7 +529,7 @@ // errors in the same file // fire the errors for this file to the AuditListeners - dispatcher.fireErrors(path, getMessageCollector().getMessages()); + fireErrors(path); // signal end of file to AuditListeners dispatcher.fireFileFinished(path);