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 {
@Test
public void rootServletContextResource() throws Exception {
AbstractEmbeddedServletContainerFactory factory = getFactory();
AtomicReference<URL> rootResource = new AtomicReference<URL>();
final AtomicReference<URL> rootResource = new AtomicReference<URL>();
this.container = factory
.getEmbeddedServletContainer(new ServletContextInitializer() {
@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