From 76190f7d3738397c9b136bc8f3deb629741bb264 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sat, 10 Oct 2020 16:11:04 +0200 Subject: [PATCH] Revert "Fix release notes" This reverts commit ec2b3d873b6b16a3b3a6ac5dc639d122b9820e82. --- docs/pages/release_notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md index e7d1f3b985..73216f30e8 100644 --- a/docs/pages/release_notes.md +++ b/docs/pages/release_notes.md @@ -16,7 +16,7 @@ This is a {{ site.pmd.release_type }} release. #### Renamed Rules -* The Java rule [`DoNotCallSystemExit`](https://pmd.github.io/latest/pmd_rules_java_errorprone.html#donotcallsystemexit) has been renamed to +* The Java rule {% rule "java/errorprone/DoNotCallSystemExit" %} has been renamed to {% rule "java/errorprone/DoNotTerminateVM" %}, since it checks for all the following calls: `System.exit(int)`, `Runtime.exit(int)`, `Runtime.halt(int)`. All these calls terminate the Java VM, which is bad, if the VM runs an application server which many independent applications.