Fix for HER-1939 ScriptedDecideRule: field sharedEngine non-transient and non-serializable.

* ScriptedDecideRule.java
    make field sharedEngine transient
This commit is contained in:
nlevitt
2011-09-12 21:48:27 +00:00
parent f20b3eee30
commit 5934e10073
@@ -105,7 +105,7 @@ implements ApplicationContextAware, InitializingBean {
transient protected ThreadLocal<ScriptEngine> threadEngine =
new ThreadLocal<ScriptEngine>();
protected ScriptEngine sharedEngine;
transient protected ScriptEngine sharedEngine;
/** map for optional use by scripts */
public Map<Object,Object> sharedMap = new ConcurrentHashMap<Object,Object>();