Commit aa3393f1 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #3589 from izeye/patch-36

* pr/3589:
  Remove an unused parameter
parents 8ea6b99e a242415b
...@@ -97,7 +97,7 @@ public class RabbitAutoConfiguration { ...@@ -97,7 +97,7 @@ public class RabbitAutoConfiguration {
@Bean @Bean
@ConditionalOnMissingBean(RabbitTemplate.class) @ConditionalOnMissingBean(RabbitTemplate.class)
public RabbitTemplate rabbitTemplate(RabbitProperties config) { public RabbitTemplate rabbitTemplate() {
return new RabbitTemplate(this.connectionFactory); return new RabbitTemplate(this.connectionFactory);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment