Skip to content

Commit d45b5f6

Browse files
committed
Merge branch '5.3.x'
# Conflicts: # spring-webflux/src/main/java/org/springframework/web/reactive/resource/VersionResourceResolver.java # spring-webmvc/src/main/java/org/springframework/web/servlet/resource/VersionResourceResolver.java
2 parents 3df3bc2 + 1c10cdd commit d45b5f6

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

spring-web/src/main/java/org/springframework/http/server/reactive/UndertowHttpHandlerAdapter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2020 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -88,7 +88,7 @@ public void handleRequest(HttpServerExchange exchange) {
8888
}
8989

9090

91-
private class HandlerResultSubscriber implements Subscriber<Void> {
91+
private static class HandlerResultSubscriber implements Subscriber<Void> {
9292

9393
private final HttpServerExchange exchange;
9494

spring-webflux/src/main/java/org/springframework/web/reactive/resource/VersionResourceResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2021 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -236,7 +236,7 @@ protected VersionStrategy getStrategyForPath(String requestPath) {
236236
}
237237

238238

239-
private class FileNameVersionedResource extends AbstractResource implements HttpResource {
239+
private static class FileNameVersionedResource extends AbstractResource implements HttpResource {
240240

241241
private final Resource original;
242242

spring-webflux/src/main/java/org/springframework/web/reactive/socket/server/upgrade/UndertowRequestUpgradeStrategy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2021 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -82,7 +82,7 @@ public Mono<Void> upgrade(ServerWebExchange exchange, WebSocketHandler handler,
8282
}
8383

8484

85-
private class DefaultCallback implements WebSocketConnectionCallback {
85+
private static class DefaultCallback implements WebSocketConnectionCallback {
8686

8787
private final HandshakeInfo handshakeInfo;
8888

spring-webmvc/src/main/java/org/springframework/web/servlet/resource/VersionResourceResolver.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2021 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -232,7 +232,7 @@ protected VersionStrategy getStrategyForPath(String requestPath) {
232232
}
233233

234234

235-
private class FileNameVersionedResource extends AbstractResource implements HttpResource {
235+
private static class FileNameVersionedResource extends AbstractResource implements HttpResource {
236236

237237
private final Resource original;
238238

spring-websocket/src/main/java/org/springframework/web/socket/sockjs/transport/handler/XhrStreamingTransportHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2019 the original author or authors.
2+
* Copyright 2002-2022 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.
@@ -75,7 +75,7 @@ protected SockJsFrameFormat getFrameFormat(ServerHttpRequest request) {
7575
}
7676

7777

78-
private class XhrStreamingSockJsSession extends StreamingSockJsSession {
78+
private static class XhrStreamingSockJsSession extends StreamingSockJsSession {
7979

8080
public XhrStreamingSockJsSession(String sessionId, SockJsServiceConfig config,
8181
WebSocketHandler wsHandler, Map<String, Object> attributes) {

0 commit comments

Comments
 (0)