Re: synchronized code in DefaultActionInvocation

2009-07-21 Thread Wes Wannemacher
I vaguely remember a while back an attempt to make packages, etc. reloadable. This was before we created an OSGi plugin, so it might not be relevant any more. IMO, between the OSGi plugin and the new spring enhancements you added, there is probably no need to worry about being able to reload t

synchronized code in DefaultActionInvocation

2009-07-21 Thread Musachy Barroso
This code in DefaultActionInvocation.createResult: ActionConfig config = proxy.getConfig(); Map results = config.getResults(); ResultConfig resultConfig = null; synchronized (config) { try { resultConfig = results.get(resultCode); } catch (NullPointerExce