mirror of
https://github.com/apache/struts.git
synced 2026-08-31 19:35:40 +00:00
Reverts changes introduced with WW-4827 and adds default constructors
This commit is contained in:
+4
-2
@@ -48,8 +48,12 @@ import javax.servlet.ServletContext;
|
||||
* </p>
|
||||
*/
|
||||
public class StrutsSpringObjectFactory extends SpringObjectFactory {
|
||||
|
||||
private static final Logger LOG = LogManager.getLogger(StrutsSpringObjectFactory.class);
|
||||
|
||||
public StrutsSpringObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs the spring object factory
|
||||
* @param autoWire The type of autowiring to use
|
||||
@@ -58,7 +62,6 @@ public class StrutsSpringObjectFactory extends SpringObjectFactory {
|
||||
* @param enableAopSupport enable AOP support
|
||||
* @param servletContext The servlet context
|
||||
* @param devMode development mode
|
||||
* @param container container
|
||||
* @since 2.1.3
|
||||
*/
|
||||
@Inject
|
||||
@@ -71,7 +74,6 @@ public class StrutsSpringObjectFactory extends SpringObjectFactory {
|
||||
@Inject(StrutsConstants.STRUTS_DEVMODE) String devMode,
|
||||
@Inject Container container) {
|
||||
|
||||
super(container);
|
||||
boolean useClassCache = BooleanUtils.toBoolean(useClassCacheStr);
|
||||
LOG.info("Initializing Struts-Spring integration...");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user