Refactor PersonBuilder

This commit is contained in:
pivovarit
2017-01-17 06:40:44 +01:00
parent ffd8963fd5
commit deb694bc88
4 changed files with 27 additions and 17 deletions
@@ -32,9 +32,6 @@ public class SpringRetryTest {
@Test(expected = RuntimeException.class)
public void givenTemplateRetryService_whenCallWithException_thenRetry() {
retryTemplate.execute(arg0 -> {
myService.templateRetryService();
return null;
});
retryTemplate.execute(arg0 -> myService.templateRetryService());
}
}