Delete unused imports

This commit is contained in:
Sam Brannen 2013-10-31 13:58:26 +01:00
parent 8bb29750bf
commit ec24299092
2 changed files with 3 additions and 8 deletions

View File

@ -16,9 +16,6 @@
package org.springframework.web.socket;
import org.springframework.util.Assert;
import org.springframework.util.ObjectUtils;
/**
* A message that can be handled or sent on a WebSocket connection.
*
@ -35,9 +32,9 @@ public interface WebSocketMessage<T> {
/**
* When partial message support is available and requested via
* {@link org.springframework.web.socket.WebSocketHandler#supportsPartialMessages()},
* this method returns {@literal true} if the current message is the last part of
* the complete WebSocket message sent by the client. Otherwise {@literal false}
* is returned if partial message support is either not available or not enabled.
* this method returns {@code true} if the current message is the last part of the
* complete WebSocket message sent by the client. Otherwise {@code false} is returned
* if partial message support is either not available or not enabled.
*/
boolean isLast();

View File

@ -35,8 +35,6 @@ import org.springframework.web.socket.TextMessage;
import org.springframework.web.socket.WebSocketHandler;
import org.springframework.web.socket.support.ExceptionWebSocketHandlerDecorator;
import java.nio.ByteBuffer;
/**
* Adapts {@link WebSocketHandler} to the Jetty 9 WebSocket API.
*