From 38c19bbd4fa65bf93109ec2c4f19f8f11e8b53ec Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Fri, 10 Feb 2017 23:33:04 +0100 Subject: [PATCH] Update changelog, references #193 --- src/site/markdown/overview/changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/site/markdown/overview/changelog.md b/src/site/markdown/overview/changelog.md index f5b8b65222..d9022c7cf5 100644 --- a/src/site/markdown/overview/changelog.md +++ b/src/site/markdown/overview/changelog.md @@ -279,6 +279,10 @@ to avoid XSS attacks. * `net.sourceforge.pmd.RuleSet` is now immutable, too, and can only be created via `RuleSetFactory`. See [PR #145](https://github.com/pmd/pmd/pull/145). * `net.sourceforge.pmd.cli.XPathCLI` has been removed. It's functionality is fully covered by the Designer. +* `net.sourceforge.pmd.Report` now works with `ThreadSafeReportListener`s. Both `ReportListener` and + `SynchronizedReportListener` are deprecated in favor of `net.sourceforge.pmd.ThreadSafeReportListener`. + Therefore, the methods `getSynchronizedListeners()` and `addSynchronizedListeners(...)` have been + replaced by `getListeners()` and `addListeners(...)`. See [PR #193](https://github.com/pmd/pmd/pull/193). ### External Contributions