From 56c5a3de6df517ba3330769b6af5176e4fa7938e Mon Sep 17 00:00:00 2001 From: Scott Frederick Date: Tue, 4 Feb 2020 14:23:42 -0600 Subject: [PATCH] Disambiguate a class in RabbitMQ CLI sample Fixes gh-20003 --- spring-boot-project/spring-boot-cli/samples/rabbit.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-cli/samples/rabbit.groovy b/spring-boot-project/spring-boot-cli/samples/rabbit.groovy index 5723c8521b..82757ddb3a 100644 --- a/spring-boot-project/spring-boot-cli/samples/rabbit.groovy +++ b/spring-boot-project/spring-boot-cli/samples/rabbit.groovy @@ -25,8 +25,8 @@ class RabbitExample implements CommandLineRunner { } @Bean - Queue queue() { - new Queue("spring-boot", false) + org.springframework.amqp.core.Queue queue() { + new org.springframework.amqp.core.Queue("spring-boot", false) } } \ No newline at end of file