You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adjust the behavior of the class so that delegates are required.
* In the current implementation, users could pass in an empty list to the composite codec.
* This is an CompositeCodec and if we had no codecs, then why have the class.
* All @nullable's were removed from the delegate attribute.
* Null returns from the findDelegate have been removed. The default delegate will be returned in the stead.
* Update the tests to require at least one codec in the delegates
Copy file name to clipboardExpand all lines: spring-integration-ip/src/test/java/org/springframework/integration/ip/tcp/connection/TcpMessageMapperTests.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,6 @@
21
21
importjava.net.InetAddress;
22
22
importjava.net.Socket;
23
23
importjava.util.Collections;
24
-
importjava.util.HashMap;
25
24
importjava.util.Map;
26
25
27
26
importjavax.net.SocketFactory;
@@ -67,7 +66,8 @@ public class TcpMessageMapperTests {
0 commit comments