We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f107a77 commit 2514e17Copy full SHA for 2514e17
src/test/java/org/springframework/retry/support/RetryTemplateBuilderTest.java
@@ -163,9 +163,8 @@ public void testFailOnNotationMix() {
163
164
@Test(expected = IllegalArgumentException.class)
165
public void testFailOnNotationsMix() {
166
- RetryTemplate.builder()
167
- .retryOn(Collections.<Class<? extends Throwable>>singletonList(IOException.class))
168
- .notRetryOn(Collections.<Class<? extends Throwable>>singletonList(OutOfMemoryError.class));
+ RetryTemplate.builder().retryOn(Collections.<Class<? extends Throwable>>singletonList(IOException.class))
+ .notRetryOn(Collections.<Class<? extends Throwable>>singletonList(OutOfMemoryError.class));
169
}
170
171
/* ---------------- BackOff -------------- */
0 commit comments