File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
src/main/java/com/rabbitmq/client Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -80,8 +80,6 @@ public class RpcClient {
8080 }
8181 };
8282
83- public static Supplier <String > DEFAULT_CORRELATION_ID_GENERATOR = new IncrementingCorrelationIdGenerator ("" );
84-
8583 private final Function <Object , Response > _replyHandler ;
8684
8785 /** Map from request correlation ID to continuation BlockingCell */
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public class RpcClientParams {
5555 */
5656 private Function <Object , RpcClient .Response > replyHandler = RpcClient .DEFAULT_REPLY_HANDLER ;
5757
58- private Supplier <String > correlationIdGenerator = RpcClient . DEFAULT_CORRELATION_ID_GENERATOR ;
58+ private Supplier <String > correlationIdGenerator = new IncrementingCorrelationIdGenerator ( "" ) ;
5959
6060 /**
6161 * Set the channel to use for communication.
You can’t perform that action at this time.
0 commit comments