Commit d29d73d3 authored by Andy Wilkinson's avatar Andy Wilkinson

Keep javac happy by making variable explicitly final

parent 89f8af4e
...@@ -680,7 +680,7 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests { ...@@ -680,7 +680,7 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
@Test @Test
public void rootServletContextResource() throws Exception { public void rootServletContextResource() throws Exception {
AbstractEmbeddedServletContainerFactory factory = getFactory(); AbstractEmbeddedServletContainerFactory factory = getFactory();
AtomicReference<URL> rootResource = new AtomicReference<URL>(); final AtomicReference<URL> rootResource = new AtomicReference<URL>();
this.container = factory this.container = factory
.getEmbeddedServletContainer(new ServletContextInitializer() { .getEmbeddedServletContainer(new ServletContextInitializer() {
@Override @Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment