diff --git a/spring-web/src/main/java/org/springframework/web/context/request/async/DeferredResult.java b/spring-web/src/main/java/org/springframework/web/context/request/async/DeferredResult.java index 185c2fe947..3ecdf9b6ff 100644 --- a/spring-web/src/main/java/org/springframework/web/context/request/async/DeferredResult.java +++ b/spring-web/src/main/java/org/springframework/web/context/request/async/DeferredResult.java @@ -100,9 +100,9 @@ public class DeferredResult { * @param timeoutValue timeout value in milliseconds (ignored if {@code null}) * @param timeoutResult the result to use */ - public DeferredResult(@Nullable Long timeoutValue, final Object timeoutResult) { - this.timeoutResult = () -> timeoutResult; + public DeferredResult(@Nullable Long timeoutValue, Object timeoutResult) { this.timeoutValue = timeoutValue; + this.timeoutResult = () -> timeoutResult; } /** @@ -113,8 +113,8 @@ public class DeferredResult { * @since 5.1.1 */ public DeferredResult(@Nullable Long timeoutValue, Supplier timeoutResult) { - this.timeoutResult = timeoutResult; this.timeoutValue = timeoutValue; + this.timeoutResult = timeoutResult; } diff --git a/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/support/AbstractSockJsService.java b/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/support/AbstractSockJsService.java index 30bec3d08b..67851780c3 100644 --- a/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/support/AbstractSockJsService.java +++ b/spring-websocket/src/main/java/org/springframework/web/socket/sockjs/support/AbstractSockJsService.java @@ -68,11 +68,12 @@ import org.springframework.web.util.WebUtils; */ public abstract class AbstractSockJsService implements SockJsService, CorsConfigurationSource { + private static final String XFRAME_OPTIONS_HEADER = "X-Frame-Options"; + private static final long ONE_YEAR = TimeUnit.DAYS.toSeconds(365); - private static final Random random = new Random(); - private static final String XFRAME_OPTIONS_HEADER = "X-Frame-Options"; + private static final Random random = new Random(); protected final Log logger = LogFactory.getLog(getClass()); @@ -291,7 +292,7 @@ public abstract class AbstractSockJsService implements SockJsService, CorsConfig /** * Return if automatic addition of CORS headers has been disabled. * @since 4.1.2 - * @see #setSuppressCors(boolean) + * @see #setSuppressCors */ public boolean shouldSuppressCors() { return this.suppressCors;