Update changelog, refs #565

This commit is contained in:
Juan Martín Sotuyo Dodero
2017-09-04 11:38:58 -03:00
parent 02c016d95f
commit c6acda64f2
2 changed files with 3 additions and 0 deletions

View File

@ -150,6 +150,8 @@ All existing rules have been updated to reflect these changes. If you have custo
* [#487](https://github.com/pmd/pmd/pull/487): \[java] Fix typeresolution for anonymous extending object * [#487](https://github.com/pmd/pmd/pull/487): \[java] Fix typeresolution for anonymous extending object
* [#496](https://github.com/pmd/pmd/issues/496): \[java] processing error on generics inherited from enclosing class * [#496](https://github.com/pmd/pmd/issues/496): \[java] processing error on generics inherited from enclosing class
* [#527](https://github.com/pmd/pmd/issues/527): \[java] Lombok getter annotation on enum is not recognized correctly * [#527](https://github.com/pmd/pmd/issues/527): \[java] Lombok getter annotation on enum is not recognized correctly
* java-basic
* [#565](https://github.com/pmd/pmd/pull/565): \[java] False negative on DontCallThreadRun when extending Thread
* java-comments * java-comments
* [#536](https://github.com/pmd/pmd/issues/536): \[java] CommentDefaultAccessModifierRule ignores constructors * [#536](https://github.com/pmd/pmd/issues/536): \[java] CommentDefaultAccessModifierRule ignores constructors
* java-controversial * java-controversial

View File

@ -40,6 +40,7 @@ public class BasicRulesTest extends SimpleAggregatorTst {
addRule(RULESET, "DontUseFloatTypeForLoopIndices"); addRule(RULESET, "DontUseFloatTypeForLoopIndices");
addRule(RULESET, "SimplifiedTernary"); addRule(RULESET, "SimplifiedTernary");
} }
// Used by DontCallThreadRun test cases // Used by DontCallThreadRun test cases
public static class TestThread extends Thread { public static class TestThread extends Thread {
@Override @Override