GH-285: Remove extra bean for service in README

Fixes https://github.com/spring-projects/spring-retry/issues/285
This commit is contained in:
Artem Bilan
2022-04-18 09:32:29 -04:00
committed by GitHub
parent 6eba459835
commit ece15aa2a8

View File

@@ -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