Files
error-prone-support/docs/bugpatterns/MethodReferenceUsage.md
2022-09-27 10:20:29 +02:00

999 B

layout, title, parent, nav_order
layout title parent nav_order
default MethodReferenceUsage Bug Patterns 1

MethodReferenceUsage

Style

${EXTRA_DOCS}

Samples

```java public static void sample() {} ```

View source code on GitHub

MethodReferenceUsage

Prefer method references over lambda expressions

SeveritySUGGESTION
TagsStyle

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("MethodReferenceUsage") to the enclosing element.