@ -567,7 +567,7 @@ public final class ResolvableType implements Serializable {
@@ -567,7 +567,7 @@ public final class ResolvableType implements Serializable {
@ -576,7 +576,7 @@ public final class ResolvableType implements Serializable {
@@ -576,7 +576,7 @@ public final class ResolvableType implements Serializable {
@ -107,15 +104,13 @@ public abstract class ConvertingEncoderDecoderSupport<T, M> {
@@ -107,15 +104,13 @@ public abstract class ConvertingEncoderDecoderSupport<T, M> {
"Unable to find ConversionService, please configure a '"
+CONVERSION_SERVICE_BEAN_NAME+"' or override getConversionService()",ex);
thrownewIllegalStateException("Unable to find ConversionService: please configure a '"+
CONVERSION_SERVICE_BEAN_NAME+"' or override the getConversionService() method",ex);
}
}
@ -148,8 +143,12 @@ public abstract class ConvertingEncoderDecoderSupport<T, M> {
@@ -148,8 +143,12 @@ public abstract class ConvertingEncoderDecoderSupport<T, M> {
thrownewIllegalStateException("ConvertingEncoderDecoderSupport's generic types T and M "+
"need to be substituted in subclass: "+getClass());
}
returnresolved;
}
/**
@ -185,12 +184,12 @@ public abstract class ConvertingEncoderDecoderSupport<T, M> {
@@ -185,12 +184,12 @@ public abstract class ConvertingEncoderDecoderSupport<T, M> {
}
catch(ConversionExceptionex){
if(messageinstanceofString){
thrownewDecodeException((String)message,"Unable to decode "+
"websocket message using ConversionService",ex);
thrownewDecodeException((String)message,
"Unable to decode websocket message using ConversionService",ex);
}
if(messageinstanceofByteBuffer){
thrownewDecodeException((ByteBuffer)message,"Unable to decode "+
"websocket message using ConversionService",ex);
thrownewDecodeException((ByteBuffer)message,
"Unable to decode websocket message using ConversionService",ex);
}
throwex;
}
@ -198,50 +197,43 @@ public abstract class ConvertingEncoderDecoderSupport<T, M> {
@@ -198,50 +197,43 @@ public abstract class ConvertingEncoderDecoderSupport<T, M> {