Details
-
Type:
Bug
-
Status: Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 2.3.2
-
Fix Version/s: None
-
Component/s: Core: Flow Executor
-
Labels:None
Description
org.springframework.webflow.engine.DecisionState
protected void doEnter(RequestControlContext context) throws FlowExecutionException { getRequiredTransition(context).execute(this, context); }
should be changed to
protected void doEnter(RequestControlContext context) throws FlowExecutionException { context.execute(getRequiredTransition(context)); }