Skip to content

Commit 0084c07

Browse files
committed
Aligned import order
1 parent 760668c commit 0084c07

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

spring-websocket/src/main/java/org/springframework/web/socket/server/standard/UndertowRequestUpgradeStrategy.java

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,6 @@
3131
import javax.websocket.Extension;
3232
import javax.websocket.server.ServerEndpointConfig;
3333

34-
import org.springframework.http.server.ServerHttpRequest;
35-
import org.springframework.http.server.ServerHttpResponse;
36-
import org.springframework.util.ClassUtils;
37-
import org.springframework.util.ReflectionUtils;
38-
import org.springframework.web.socket.server.HandshakeFailureException;
39-
40-
import org.xnio.StreamConnection;
41-
4234
import io.undertow.server.HttpServerExchange;
4335
import io.undertow.server.HttpUpgradeListener;
4436
import io.undertow.servlet.api.InstanceFactory;
@@ -58,6 +50,13 @@
5850
import io.undertow.websockets.jsr.handshake.JsrHybi08Handshake;
5951
import io.undertow.websockets.jsr.handshake.JsrHybi13Handshake;
6052
import io.undertow.websockets.spi.WebSocketHttpExchange;
53+
import org.xnio.StreamConnection;
54+
55+
import org.springframework.http.server.ServerHttpRequest;
56+
import org.springframework.http.server.ServerHttpResponse;
57+
import org.springframework.util.ClassUtils;
58+
import org.springframework.util.ReflectionUtils;
59+
import org.springframework.web.socket.server.HandshakeFailureException;
6160

6261
/**
6362
* A WebSocket {@code RequestUpgradeStrategy} for use with WildFly and its

0 commit comments

Comments
 (0)