forked from phoedos/pmd
Merge branch 'master' into metrics-abstraction
This commit is contained in:
@ -7,8 +7,7 @@ package net.sourceforge.pmd.lang.apex.ast;
|
||||
public class ApexParserVisitorAdapter implements ApexParserVisitor {
|
||||
@Override
|
||||
public Object visit(ApexNode<?> node, Object data) {
|
||||
node.childrenAccept(this, data);
|
||||
return null;
|
||||
return node.childrenAccept(this, data);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -109,5 +109,5 @@ Based on those metrics, rules like "GodClass" detection can be implemented more
|
||||
* [#525](https://github.com/pmd/pmd/pull/525): \[core] Fix line ending and not ignored files issues - [Matias Comercio](https://github.com/MatiasComercio)
|
||||
* [#528](https://github.com/pmd/pmd/pull/528): \[core] Fix typo - [Ayoub Kaanich](https://github.com/kayoub5)
|
||||
* [#530](https://github.com/pmd/pmd/pull/530): \[java] Fix issue #527: Lombok getter annotation on enum is not recognized correctly - [Clément Fournier](https://github.com/oowekyala)
|
||||
* [#535](https://github.com/pmd/pmd/pull/535): \[apex] Fix broken Apex visitor adapter - [Clément Fournier](https://github.com/oowekyala)
|
||||
* [#529](https://github.com/pmd/pmd/pull/529): \[java] Abstracted the Java metrics framework - [Clément Fournier](https://github.com/oowekyala)
|
||||
|
||||
|
Reference in New Issue
Block a user