From ece15aa2a8607e0897ec05810f72850ff5c73f67 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Mon, 18 Apr 2022 09:32:29 -0400 Subject: [PATCH] GH-285: Remove extra bean for service in README Fixes https://github.com/spring-projects/spring-retry/issues/285 --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 4f8f9b0..542cb14 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,6 @@ The following example shows how to use Spring Retry in its declarative style: @EnableRetry public class Application { - @Bean - public Service service() { - return new Service(); - } - } @Service