File tree 2 files changed +3
-3
lines changed
src/test/java/org/springframework/retry/support
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 329
329
<groupId >org.apache.maven.plugins</groupId >
330
330
<artifactId >maven-compiler-plugin</artifactId >
331
331
<configuration >
332
- <source >8 </source >
333
- <target >8 </target >
332
+ <source >1.6 </source >
333
+ <target >1.6 </target >
334
334
</configuration >
335
335
</plugin >
336
336
<plugin >
Original file line number Diff line number Diff line change @@ -418,7 +418,7 @@ public void testRethrowRetryable() throws Throwable {
418
418
RetryTemplate retryTemplate = new RetryTemplate ();
419
419
retryTemplate .setRetryPolicy (policy );
420
420
retryTemplate .setRethrowNonRetryable (true );
421
- Object value = new Object ();
421
+ final Object value = new Object ();
422
422
Object result = retryTemplate .execute (new RetryCallback <Object , Exception >() {
423
423
@ Override
424
424
public Object doWithRetry (RetryContext context ) throws Exception {
You can’t perform that action at this time.
0 commit comments