Implement options and method references

This commit is contained in:
Clément Fournier
2018-11-13 16:41:05 +01:00
parent da9a8f3be5
commit d85e16732a
3 changed files with 201 additions and 47 deletions
File diff suppressed because it is too large Load Diff
+4 -1
View File
@@ -32,11 +32,14 @@ This is a {{ site.pmd.release_type }} release.
* [#1372](https://github.com/pmd/pmd/issues/1372): \[java] false positive for UselessQualifiedThis
### API Changes
{% assign javadoc_context = "core @.lang.ast.xpath" %}
{% jdoc_context "core @.lang.ast.xpath" %}
* The implementation of the adapters for the XPath engines Saxon and Jaxen (package {% jdoc_package @ %})
are now deprecated. They'll be moved to an internal package come 7.0.0. Only {% jdoc @.Attribute %} remains public API.
{% endjdoc_context %}
### External Contributions
* [#1384](https://github.com/pmd/pmd/pull/1384): \[java] New Rule - UseUnderscoresInNumericLiterals - [RajeshR](https://github.com/rajeshggwp)
@@ -6,7 +6,9 @@ package net.sourceforge.pmd.properties;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
import net.sourceforge.pmd.PMDConfiguration;
import net.sourceforge.pmd.properties.builders.MultiNumericPropertyBuilder;
import net.sourceforge.pmd.properties.builders.PropertyDescriptorBuilderConversionWrapper;