提交 df0b26f0 编写于 作者: J Juergen Hoeller

XhrTransport implementations do not need to redeclare interface when extending...

XhrTransport implementations do not need to redeclare interface when extending from AbstractXhrTransport
上级 fbce1841
......@@ -60,7 +60,7 @@ import org.springframework.web.socket.sockjs.frame.SockJsFrame;
* @author Rossen Stoyanchev
* @since 4.1
*/
public class JettyXhrTransport extends AbstractXhrTransport implements XhrTransport, Lifecycle {
public class JettyXhrTransport extends AbstractXhrTransport implements Lifecycle {
private final HttpClient httpClient;
......
......@@ -50,7 +50,7 @@ import org.springframework.web.socket.sockjs.frame.SockJsFrame;
* @author Rossen Stoyanchev
* @since 4.1
*/
public class RestTemplateXhrTransport extends AbstractXhrTransport implements XhrTransport {
public class RestTemplateXhrTransport extends AbstractXhrTransport {
private final RestOperations restTemplate;
......
......@@ -82,7 +82,7 @@ import org.springframework.web.socket.sockjs.frame.SockJsFrame;
* @since 4.1.2
* @see org.xnio.Options
*/
public class UndertowXhrTransport extends AbstractXhrTransport implements XhrTransport {
public class UndertowXhrTransport extends AbstractXhrTransport {
private static final AttachmentKey<String> RESPONSE_BODY = AttachmentKey.create(String.class);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册