Skip to content

Commit ea92859

Browse files
committed
1 parent 14898b9 commit ea92859

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,8 @@
329329
<groupId>org.apache.maven.plugins</groupId>
330330
<artifactId>maven-compiler-plugin</artifactId>
331331
<configuration>
332-
<source>8</source>
333-
<target>8</target>
332+
<source>1.6</source>
333+
<target>1.6</target>
334334
</configuration>
335335
</plugin>
336336
<plugin>

src/test/java/org/springframework/retry/support/RetryTemplateTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ public void testRethrowRetryable() throws Throwable {
418418
RetryTemplate retryTemplate = new RetryTemplate();
419419
retryTemplate.setRetryPolicy(policy);
420420
retryTemplate.setRethrowNonRetryable(true);
421-
Object value = new Object();
421+
final Object value = new Object();
422422
Object result = retryTemplate.execute(new RetryCallback<Object, Exception>() {
423423
@Override
424424
public Object doWithRetry(RetryContext context) throws Exception {

0 commit comments

Comments
 (0)