From 0e4576db35540e672c56d298af442be611765e65 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Fri, 3 Mar 2023 12:06:57 +0100 Subject: [PATCH] Add rule links (section Revamped Java module) --- docs/pages/release_notes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/pages/release_notes.md b/docs/pages/release_notes.md index b9d01f9465..fc6d87d64f 100644 --- a/docs/pages/release_notes.md +++ b/docs/pages/release_notes.md @@ -50,7 +50,8 @@ PMD 7 does not need to load classes, and does not have these problems. The AST exposes much more semantic information now. For instance, you can jump from a method call to the declaration of the method being called, or from a field access to the field declaration. These improvements allow interesting rules to be written that need precise knowledge of the types -in the program, for instance to detect unnecessary boxing or unnecessary explicit type arguments (TODO link those rules). +in the program, for instance to detect {% rule java/codestyle/UnnecessaryBoxing %} +or {% rule java/codestyle/UseDiamondOperator %}. These are just a small preview of the new rules we will be adding in the PMD 7 release cycle. Some first results of the Java AST changes are for now documented in the Wiki: