Suppress warnings for resource leaks
This commit is contained in:
parent
4bdf382714
commit
381f7fe6df
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2012 the original author or authors.
|
* Copyright 2002-2013 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -126,6 +126,7 @@ public class ServletTestExecutionListener extends AbstractTestExecutionListener
|
||||||
RequestContextHolder.setRequestAttributes(servletWebRequest);
|
RequestContextHolder.setRequestAttributes(servletWebRequest);
|
||||||
|
|
||||||
if (wac instanceof ConfigurableApplicationContext) {
|
if (wac instanceof ConfigurableApplicationContext) {
|
||||||
|
@SuppressWarnings("resource")
|
||||||
ConfigurableApplicationContext configurableApplicationContext = (ConfigurableApplicationContext) wac;
|
ConfigurableApplicationContext configurableApplicationContext = (ConfigurableApplicationContext) wac;
|
||||||
ConfigurableListableBeanFactory bf = configurableApplicationContext.getBeanFactory();
|
ConfigurableListableBeanFactory bf = configurableApplicationContext.getBeanFactory();
|
||||||
bf.registerResolvableDependency(MockHttpServletResponse.class, response);
|
bf.registerResolvableDependency(MockHttpServletResponse.class, response);
|
||||||
|
|
Loading…
Reference in New Issue