From 2bb8571a29dba1f3e671c2a0c58bebf9b0dd2430 Mon Sep 17 00:00:00 2001 From: "Travis CI (pmd-bot)" Date: Tue, 11 Dec 2018 07:39:14 +0000 Subject: [PATCH] Update documentation TRAVIS_JOB_NUMBER=3191.1 TRAVIS_COMMIT_RANGE=5589540e9f13...9daa078694e1 --- docs/pages/pmd/rules/java/bestpractices.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/pages/pmd/rules/java/bestpractices.md b/docs/pages/pmd/rules/java/bestpractices.md index ab7b3df353..bbd571f307 100644 --- a/docs/pages/pmd/rules/java/bestpractices.md +++ b/docs/pages/pmd/rules/java/bestpractices.md @@ -872,6 +872,7 @@ can lead to quite messy code. This rule looks for several declarations on the sa **This rule is defined by the following XPath expression:** ``` xpath //LocalVariableDeclaration + [not(parent::ForInit)] [count(VariableDeclarator) > 1] [$strictMode or count(distinct-values(VariableDeclarator/@BeginLine)) != count(VariableDeclarator)] |