Skip to content

Commit 7a0368a

Browse files
renovate[bot]breedx-splklaurit
authored
fix(deps): update errorproneversion to v2.28.0 (main) (minor) (#11507)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jason Plumb <[email protected]> Co-authored-by: Lauri Tulmin <[email protected]>
1 parent a0526c4 commit 7a0368a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

dependencyManagement/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ val DEPENDENCY_BOMS = listOf(
4040

4141
val autoServiceVersion = "1.1.1"
4242
val autoValueVersion = "1.11.0"
43-
val errorProneVersion = "2.27.1"
43+
val errorProneVersion = "2.28.0"
4444
val byteBuddyVersion = "1.14.17"
4545
val asmVersion = "9.7"
4646
val jmhVersion = "1.37"

instrumentation/jetty/jetty-8.0/javaagent/src/test/java/io/opentelemetry/javaagent/instrumentation/jetty/v8_0/JavaLambdaMaker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
public class JavaLambdaMaker {
99

10-
@SuppressWarnings("FunctionalExpressionCanBeFolded")
10+
@SuppressWarnings({"FunctionalExpressionCanBeFolded", "UnnecessaryMethodReference"})
1111
public static Runnable lambda(Runnable runnable) {
1212
return runnable::run;
1313
}

muzzle/src/test/java/muzzle/TestClasses.java

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ public static boolean instanceofMethod(Object a) {
109109
}
110110

111111
public static class InvokeDynamicAdvice {
112+
@SuppressWarnings("UnnecessaryMethodReference")
112113
public static Nested.SomeInterface invokeDynamicMethod(Nested.SomeImplementation a) {
113114
Runnable staticMethod = Nested.B::staticMethod;
114115
Runnable constructorMethod = Nested.A::new;

0 commit comments

Comments
 (0)