You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Since java 1.8 a lambda expression like this System.out::println can be used.
A "Potential violation of Law of Demeter (method chain calls)" is reported when a lambda expression is used as a parameter for a method.
Result files:
<?xml version="1.0" encoding="UTF-8"?>
<pmdxmlns="http://pmd.sourceforge.net/report/2.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://pmd.sourceforge.net/report/2.0.0 http://pmd.sourceforge.net/report_2_0_0.xsd"version="6.1.0"timestamp="2018-04-01T15:08:32.567">
<filename="F:\Project\Java\demeter\src\main\java\SimpleClass.java">
<violationbeginline="5"endline="5"begincolumn="9"endcolumn="52"rule="LawOfDemeter"ruleset="Design"class="SimpleClass"method="simpleMethod"externalInfoUrl="https://pmd.github.io/pmd-6.1.0/pmd_rules_java_design.html#lawofdemeter"priority="3">
Potential violation of Law of Demeter (method chain calls)
</violation>
</file>
</pmd>
- Fixespmd#2175
- Fixespmd#2179
- Fixespmd#1605: same fix as pmd#2179, since enum constants are static fields they are trusted.
- Fixespmd#2180: the fix is not to special-case Thread, but to consider all static methods as trusted (consistent with the treatment of static fields in pmd#2179)
- Fixespmd#2182: the fix is not to allow package-private access, but to allow a class to access fields of instances of the same class.
- Fixespmd#1014
- Fixespmd#2188
adangel
changed the title
[java] LawOfDemeter - False positive with lambda expression
[java] LawOfDemeter: False positive with lambda expression
Feb 25, 2022
Affects PMD Version: 6.1.0
Rule: LawOfDemeter
Description: Since java 1.8 a lambda expression like this System.out::println can be used.
A "Potential violation of Law of Demeter (method chain calls)" is reported when a lambda expression is used as a parameter for a method.
Result files:
Code Sample demonstrating the issue:
Running PMD through: Gradle
The text was updated successfully, but these errors were encountered: