From ff05a6ff5effe2ad7a4802d984280266999b5bca Mon Sep 17 00:00:00 2001 From: Oliver Burn Date: Mon, 28 Apr 2003 12:28:29 +0000 Subject: [PATCH] Patch from Oleg Sukhodolsky to fix documentation. (bug 727896) --- .../checks/com/mycompany/checks/LimitImplementationFiles.java | 2 +- docs/releasenotes.html | 3 +++ docs/writingchecks.html | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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 @@
  • Patch from Oleg Sukhodolsky to fix TranslationCheck Test bug. (bug 720925).
  • +
  • Patch from Oleg Sukhodolsky to fix documentation. + (bug 727896).
  • +

    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);