mirror of
https://github.com/moparisthebest/JdbcMapper
synced 2024-11-22 17:12:16 -05:00
Don't setPerRequestState with null
This commit is contained in:
parent
05a2ddfe79
commit
9295099ed5
@ -589,7 +589,8 @@ public abstract class FlowController extends PageFlowManagedObject
|
|||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
setPerRequestState( prevState );
|
if(prevState != null)
|
||||||
|
setPerRequestState( prevState );
|
||||||
|
|
||||||
PageFlowControlContainer pfcc = PageFlowControlContainerFactory.getControlContainer(request,getServletContext());
|
PageFlowControlContainer pfcc = PageFlowControlContainerFactory.getControlContainer(request,getServletContext());
|
||||||
pfcc.endContextOnPageFlow(this);
|
pfcc.endContextOnPageFlow(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user