From 17bc3facaa54fe792e49f78d7e7bf8d7db89bb92 Mon Sep 17 00:00:00 2001 From: rstoyanchev Date: Mon, 13 Feb 2023 09:15:47 +0000 Subject: [PATCH] Polishing contribution Closes gh-29220 --- .../java/org/springframework/web/socket/CloseStatus.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-websocket/src/main/java/org/springframework/web/socket/CloseStatus.java b/spring-websocket/src/main/java/org/springframework/web/socket/CloseStatus.java index bafbdf50ca4..0e1fb747c93 100644 --- a/spring-websocket/src/main/java/org/springframework/web/socket/CloseStatus.java +++ b/spring-websocket/src/main/java/org/springframework/web/socket/CloseStatus.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2022 the original author or authors. + * Copyright 2002-2023 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -145,8 +145,8 @@ public final class CloseStatus implements Serializable { * client that may be done during normal shutdown. * @since 4.0.3 */ - public static final CloseStatus SESSION_NOT_RELIABLE = new CloseStatus(4500) - .withReason("Failed to send message within the configured send limit"); + public static final CloseStatus SESSION_NOT_RELIABLE = + new CloseStatus(4500).withReason("Failed to send message within the configured send limit"); private final int code;