Skip to content

Commit 429833c

Browse files
committed
Merge branch '6.2.x'
# Conflicts: # spring-web/src/main/java/org/springframework/http/client/SimpleClientHttpRequestFactory.java
2 parents 2d59433 + 0aa721c commit 429833c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

buildSrc/src/main/java/org/springframework/build/CheckstyleConventions.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void apply(Project project) {
5050
project.getPlugins().apply(CheckstylePlugin.class);
5151
project.getTasks().withType(Checkstyle.class).forEach(checkstyle -> checkstyle.getMaxHeapSize().set("1g"));
5252
CheckstyleExtension checkstyle = project.getExtensions().getByType(CheckstyleExtension.class);
53-
checkstyle.setToolVersion("10.20.1");
53+
checkstyle.setToolVersion("10.20.2");
5454
checkstyle.getConfigDirectory().set(project.getRootProject().file("src/checkstyle"));
5555
String version = SpringJavaFormatPlugin.class.getPackage().getImplementationVersion();
5656
DependencySet checkstyleDependencies = project.getConfigurations().getByName("checkstyle").getDependencies();

framework-platform/framework-platform.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ javaPlatform {
77
}
88

99
dependencies {
10-
api(platform("com.fasterxml.jackson:jackson-bom:2.18.1"))
10+
api(platform("com.fasterxml.jackson:jackson-bom:2.18.2"))
1111
api(platform("io.micrometer:micrometer-bom:1.14.2"))
1212
api(platform("io.netty:netty-bom:4.1.115.Final"))
1313
api(platform("io.netty:netty5-bom:5.0.0.Alpha5"))
@@ -53,7 +53,7 @@ dependencies {
5353
api("io.r2dbc:r2dbc-h2:1.0.0.RELEASE")
5454
api("io.r2dbc:r2dbc-spi-test:1.0.0.RELEASE")
5555
api("io.r2dbc:r2dbc-spi:1.0.0.RELEASE")
56-
api("io.reactivex.rxjava3:rxjava:3.1.9")
56+
api("io.reactivex.rxjava3:rxjava:3.1.10")
5757
api("io.smallrye.reactive:mutiny:1.10.0")
5858
api("io.undertow:undertow-core:2.3.18.Final")
5959
api("io.undertow:undertow-servlet:2.3.18.Final")

spring-messaging/src/main/java/org/springframework/messaging/handler/invocation/AbstractMethodMessageHandler.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2023 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -573,7 +573,7 @@ protected void handleMatch(T mapping, HandlerMethod handlerMethod, String lookup
573573
if (returnValue != null && this.returnValueHandlers.isAsyncReturnValue(returnValue, returnType)) {
574574
CompletableFuture<?> future = this.returnValueHandlers.toCompletableFuture(returnValue, returnType);
575575
if (future != null) {
576-
future.whenComplete(new ReturnValueListenableFutureCallback(invocable, message));
576+
future.whenComplete(new ReturnValueCallback(invocable, message));
577577
}
578578
}
579579
else {
@@ -704,13 +704,13 @@ public int compare(Match match1, Match match2) {
704704
}
705705

706706

707-
private class ReturnValueListenableFutureCallback implements BiConsumer<Object, Throwable> {
707+
private class ReturnValueCallback implements BiConsumer<Object, Throwable> {
708708

709709
private final InvocableHandlerMethod handlerMethod;
710710

711711
private final Message<?> message;
712712

713-
public ReturnValueListenableFutureCallback(InvocableHandlerMethod handlerMethod, Message<?> message) {
713+
public ReturnValueCallback(InvocableHandlerMethod handlerMethod, Message<?> message) {
714714
this.handlerMethod = handlerMethod;
715715
this.message = message;
716716
}

0 commit comments

Comments
 (0)