Description
Some ActionConfigs specify a command class instead of an action class.
The following code in in AbstractCreateAction will emit an error even though there's a valid command class specified and no error should be reported to the application developer.
AbstractCreateAction .java
--------------
...
78: if (type == null) {
79: if ((actionConfig.getForward() == null)
80: && (actionConfig.getInclude() == null))
...
--------------