diff --git a/spring-faces/src/main/java/org/springframework/faces/webflow/context/portlet/RequestParameterMap.java b/spring-faces/src/main/java/org/springframework/faces/webflow/context/portlet/RequestParameterMap.java
index e8f26f06..caa7b096 100644
--- a/spring-faces/src/main/java/org/springframework/faces/webflow/context/portlet/RequestParameterMap.java
+++ b/spring-faces/src/main/java/org/springframework/faces/webflow/context/portlet/RequestParameterMap.java
@@ -63,8 +63,6 @@ public class RequestParameterMap extends PortletRequestParameterMap {
*
True
* null
*
- *
- * @param useArrayForMultiValueAttributes
*/
public Boolean useArrayForMultiValueAttributes() {
return useArrayForMultiValueAttributes;
diff --git a/spring-webflow/src/main/java/org/springframework/webflow/action/EvaluateAction.java b/spring-webflow/src/main/java/org/springframework/webflow/action/EvaluateAction.java
index a16e1846..f6f67093 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/action/EvaluateAction.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/action/EvaluateAction.java
@@ -64,7 +64,7 @@ public class EvaluateAction extends AbstractAction {
/**
* Create a new evaluate action.
* @param expression the expression to evaluate (required)
- * @param evaluationResultExposer the strategy for how the expression result will be exposed to the flow (optional)
+ * @param resultExpression the result expression to evaluate (optional)
* @param resultEventFactory the factory that will map the evaluation result to a Web Flow event (optional)
*/
public EvaluateAction(Expression expression, Expression resultExpression, ResultEventFactory resultEventFactory) {
diff --git a/spring-webflow/src/main/java/org/springframework/webflow/action/ResultObjectBasedEventFactory.java b/spring-webflow/src/main/java/org/springframework/webflow/action/ResultObjectBasedEventFactory.java
index f296f2e0..c0715576 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/action/ResultObjectBasedEventFactory.java
+++ b/spring-webflow/src/main/java/org/springframework/webflow/action/ResultObjectBasedEventFactory.java
@@ -41,11 +41,6 @@ import org.springframework.webflow.execution.RequestContext;
* |
*
*
- * | {@link org.springframework.core.enums.LabeledEnum} |
- * {@link org.springframework.core.enums.LabeledEnum#getLabel()} |
- * The result object will included in the event as an attribute named "result". |
- *
- *
* | {@link java.lang.Enum} |
* {@link java.lang.Enum#name()} |
* The result object will included in the event as an attribute named "result". |
@@ -65,7 +60,7 @@ import org.springframework.webflow.execution.RequestContext;
* @author Keith Donald
* @author Erwin Vervaet
*/
-public class ResultObjectBasedEventFactory extends EventFactorySupport implements ResultEventFactory {
+public class ResultObjectBasedEventFactory extends EventFactorySupport implements ResultEventFactory {
public Event createResultEvent(Object source, Object resultObject, RequestContext context) {
if (resultObject == null) {
diff --git a/spring-webflow/src/main/java/org/springframework/webflow/engine/package.html b/spring-webflow/src/main/java/org/springframework/webflow/engine/package.html
index 64f20cbe..ca9bf721 100644
--- a/spring-webflow/src/main/java/org/springframework/webflow/engine/package.html
+++ b/spring-webflow/src/main/java/org/springframework/webflow/engine/package.html
@@ -4,9 +4,9 @@
The implementation of the web flow execution engine.
-The engine implementation itself is located within the {@link org.springframework.webflow.engine.impl impl} package.
+The engine implementation itself is located within the {@code impl} sub-package.
Builders for assembling flow definitions executable by this engine are located within the
-{@link org.springframework.webflow.engine.builder builder} package.
+{@code builder} sub-package.