@@ -67,7 +67,6 @@ interface JmsClient {
67
67
/**
68
68
* Create a new {@code JmsClient} for the given {@link ConnectionFactory}.
69
69
* @param connectionFactory the factory to obtain JMS connections from
70
- * @return a new {@code JmsClient} instance
71
70
*/
72
71
static JmsClient create (ConnectionFactory connectionFactory ) {
73
72
return new DefaultJmsClient (connectionFactory , null );
@@ -77,7 +76,6 @@ static JmsClient create(ConnectionFactory connectionFactory) {
77
76
* Create a new {@code JmsClient} for the given {@link ConnectionFactory}.
78
77
* @param connectionFactory the factory to obtain JMS connections from
79
78
* @param messageConverter the message converter for payload objects
80
- * @return a new {@code JmsClient} instance
81
79
*/
82
80
static JmsClient create (ConnectionFactory connectionFactory , MessageConverter messageConverter ) {
83
81
return new DefaultJmsClient (connectionFactory , messageConverter );
@@ -87,7 +85,6 @@ static JmsClient create(ConnectionFactory connectionFactory, MessageConverter me
87
85
* Create a new {@code JmsClient} for the given {@link JmsOperations}.
88
86
* @param jmsTemplate the {@link JmsTemplate} to use for performing operations
89
87
* (can be a custom {@link JmsOperations} implementation as well)
90
- * @return a new {@code JmsClient} instance
91
88
*/
92
89
static JmsClient create (JmsOperations jmsTemplate ) {
93
90
return new DefaultJmsClient (jmsTemplate , null );
@@ -98,7 +95,6 @@ static JmsClient create(JmsOperations jmsTemplate) {
98
95
* @param jmsTemplate the {@link JmsTemplate} to use for performing operations
99
96
* (can be a custom {@link JmsOperations} implementation as well)
100
97
* @param messageConverter the message converter for payload objects
101
- * @return a new {@code JmsClient} instance
102
98
*/
103
99
static JmsClient create (JmsOperations jmsTemplate , MessageConverter messageConverter ) {
104
100
return new DefaultJmsClient (jmsTemplate , messageConverter );
0 commit comments