Update changelog, refs #632

This commit is contained in:
Juan Martín Sotuyo Dodero
2017-10-08 19:44:56 -03:00
parent 9b28bdbe86
commit f3b3bdb693

View File

@ -105,6 +105,10 @@ and include them to such reports.
* The new rule `ForLoopCanBeForeach` (ruleset `java-migration`) helps to identify those for-loops that can
be safely refactored into for-each-loops available since java 1.5.
* The new rule `AvoidDirectAccessTriggerMap` (ruleset `apex-style`) helps to identify direct array access to triggers,
which can produce bugs by iether accessing non-existing indexes, or them leaving out. You should use for-each-loops
instead.
#### Modified Rules
* The rule `UnnecessaryFinalModifier` (ruleset `java-unnecessarycode`) has been revamped to detect more cases.
@ -292,4 +296,5 @@ All existing rules have been updated to reflect these changes. If you have custo
* [#588](https://github.com/pmd/pmd/pull/588): \[java] XPath function to compute metrics - [Clément Fournier](https://github.com/oowekyala)
* [#598](https://github.com/pmd/pmd/pull/598): \[java] Fix #388: controversial.AvoidLiteralsInIfCondition 0.0 false positive - [Clément Fournier](https://github.com/oowekyala)
* [#620](https://github.com/pmd/pmd/pull/620): \[core] Moved properties to n.s.pmd.properties - [Clément Fournier](https://github.com/oowekyala)
* [#632](https://github.com/pmd/pmd/pull/632): \[apex] Add AvoidDirectAccessTriggerMap rule to the style set - [Jan Aertgeerts](https://github.com/JAertgeerts)